Task Assignee

Delete Task Assignees

DEL

Remove one or more TaskAssignees from a Task.

A TaskAssignee is an assignment of a Resource to a Task. You can assign multiple Resources to a Task and designate what proportion of their time will be allocated to this Task.

Path parameters

taskIdstringRequired
The unique identifier of the Task whose TaskAssignee will be removed

Request

This endpoint expects a list of objects.
id
stringRequired
A unique identifier. To determine the meaning of this unique identifier, see the field to which this value is attached.

Response

This endpoint returns an object
error
objectOptional
If the API call failed, this will contain information about the error that occurred.
success
booleanOptional
True if the API call succeeded; false otherwise.
hasError
booleanOptional
True if the API call failed.
statusCode
enumOptional
The HTTP code of the response.
data
objectOptional
Returns the id of a specific ChangeSet
DEL
$curl -X DELETE /api/data/tasks/taskId/assignees \
> -H "Authorization: Bearer <token>" \
> -H "Content-Type: application/json" \
> -d '[
> {
> "id": "id"
> }
>]'
Response
1{
2 "error": {
3 "technicalError": "technicalError",
4 "additionalErrors": [
5 "additionalErrors"
6 ],
7 "message": "message"
8 },
9 "success": true,
10 "hasError": true,
11 "statusCode": "Continue",
12 "data": {
13 "changeSetId": "changeSetId",
14 "id": "id"
15 }
16}