Getting a List of Competency Profiles
AVAILABLE WITH ENTERPRISE SUBSCRIPTION
POST /performance-management/competencies/profile/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. |
| Parameter | |
| profileIds | The ID of the competency profile |
Existing customers may continue using ispringlearn.com, and new customers should use ispring.com.
Response Parameters
| Parameter | Description |
| profileId | Competency profile ID |
| name | Competency profile name |
| description | Competency profile description |
| competencies | An array of competencies |
| competencyId | Competency ID |
| requiredLevelId | Required level ID for the competency |
| indicators | An array of competency indicators |
| indicatorId | Competency indicator ID |
| requiredLevelId | Required level ID for the indicator |
Response Codes
Code | Text | Description |
|---|---|---|
| 200 | OK | The request has been successfully processed. |
| 400 | Bad Request | A request error. |
| 401 | Unauthorized | An authorization error |
| 403 | Permission denied | No permission to perform this request. This request can only be performed by the Account Owner and Account Administrators. |
Sample Request
POST /performance-management/competencies/profile/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
{
"profileIds": [
"3fa85f64-5717-4562-b3fc-2c963f66afa6"
]
}
CODE
Sample Response
[
{
"profileId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "string",
"description": "string",
"competencies": [
{
"competencyId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"requiredLevelId": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
}
],
"indicators": [
{
"indicatorId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"requiredLevelId": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
}
]
}
]
CODE