Tasks
Get all task assignees
Get information as a list of all task assignees.
get/tasks/{task_id}/assignees
Path parameters
task_idstring required
Example:8bed991c68a470e7aaeffbf048
The unique ID of the task in CareCloud.
Query parameters
countinteger
The number of records to return in API response.
⚠️ We recommended adjust the batch size based on processing time. Depending on the response time of the request. Default value of 100 records is used if count parameter is not set.
offsetinteger
The number of records from a collection to skip. Default value of 0 is used when parameter offset is not set.
sort_fieldstring
Name of the sorting parameter. You can sort by any of the first level parameters from the resource response. Response is sorted by the specified field.
sort_direction'ASC' | 'DESC'
Direction of sorting the response list.
Headers
Accept-Languagestring
The unique ID of the language code by ISO 639-1.
Response
OK
Example response
{
"data": {
"task_assignees": [
{
"task_assignee_id": "81eaeea13b8984a169c490a325",
"user_id": "898a6545ed2bfa3f8466d09bc6",
"name": "Arthur Dent",
"last_change": "2021-06-20 16:59:49"
}
],
"total_items": 1
}
}