Task Field

Update Task Field Value

Deprecated
PUT

This endpoint has been replace with tasks/{taskId}/fields/{fieldId}/values

Path parameters

taskIdstringRequired
The unique identifier of the Task whose value you wish to update
fieldIdstringRequired
The unique identifier of the TaskField whose value you wish to update

Request

This endpoint expects an object.
value
stringOptional
The new value to be set for this TaskField.

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
PUT
$curl -X PUT /api/data/tasks/taskId/fields/fieldId \
> -H "Authorization: Bearer <token>" \
> -H "Content-Type: application/json" \
> -d '{}'
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}