Tasks
Create a task assignee
Add a new assignee to the task. ⚠️ Endpoint is available only in the Enterprise interface.
post/tasks/{task_id}/assignees
Path parameters
task_idstring required
Example:8bed991c68a470e7aaeffbf048
The unique ID of the task in CareCloud.
Headers
Accept-Languagestring
The unique ID of the language code by ISO 639-1.
Request body
Example request
{
"task_assignee": {
"task_assignee_id": "81eaeea13b8984a169c490a325",
"user_id": "898a6545ed2bfa3f8466d09bc6",
"name": "Arthur Dent",
"last_change": "2021-06-20 16:59:49"
}
}Response
Created
Example response
{
"data": {
"task_assignee_id": "86e05affc7a7abefcd513ab400"
}
}