Request:
GET /performance-management/competencies/group/list
Permissions to Run the Request
Account Owner and Account Administrators
Request Headers
Header | Description |
|---|---|
| Authorization (required) | Access token. You can obtain a token by making a request. |
| Content-Type: application/json (required) | Property for processing a request in JSON. |
| Accept: application/json (required) | Property for processing a request in JSON. |
Response Parameters
| Parameter | Description |
| groupId | The ID of competency group |
| name | Name of the competency group |
| parentId | The ID of parent group |
| competencyIds | The ID of competencies included in the group |
Response Codes
Code | Text | Description |
|---|---|---|
| 200 | OK | The request has been successfully processed. |
| 401 | Unauthorized | An authorization error |
| 403 | Permission denied | The user doesn't have enough permissions to get information regarding the course |
Sample Request
GET /performance-management/competencies/group/list Host: api-learn.ispringlearn.com Content-Type: application/json Accept: application/json X-Auth-Account-Url: https://myaccount.ispringlearn.com Authorization: Bearer N3Hk5sds1_DVj1JFTqJKFWjGHf94DWp1YSffLxeZX8co
Sample Response
[
{
"groupId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "Soft skills",
"parentId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"competencyIds": [
"3fa85f64-5717-4562-b3fc-2c963f66afa6"
]
}
]