This API allows clients to read talent mapping data for employees in the organisation.
Throughout the API an 'api_id' is used.
Users can be created and managed using the Directory API: Users endpoints and will be referenced in this set of APIs.
GET /talent/talentmap/
List all Talent Map records in this organisation.
The 'fields' property will contain all fields which have been set for that specific talent mapping template. Where they are not set for the employee they will be set to null.
Parameters
search: string | A search term (you can search by 'name') |
limit: integer | Number of results to return per page |
offset: integer |
The initial index from which to return results |
Response
Returns an object including a list of Talent Maps.
[
{
"api_id": string,
"person": string,
"performance": integer,
"potential": integer,
"fields": {
}
"cycle": string
}....
]
GET /talent/talentmap/{api_id}/
Get a specific talent map record in this organisation.
The 'fields' property will contain all fields which have been set for that specific talent mapping template. Where they are not set for the employee they will be set to null.
Parameters
search: string | A search term (you can search by 'name') |
limit: integer | Number of results to return per page |
offset: integer |
The initial index from which to return results |
Response
Returns an object for this specific talent map record.
{
"api_id": string,
"person": string,
"performance": integer,
"potential": integer,
"fields": {
}
"cycle": string
}