Task Metadata

Add Metadata

PUT
Adds a metadata to a task

Path parameters

taskIdstringRequired
Task ID

Query parameters

isSystembooleanOptional
If metadata is for system or customer, isSystem = true is only of ProjectManager
isOverridebooleanOptional
If false we merge with the keys

Request

This endpoint expects an object.
data
map from strings to anyOptional
Customer or system metadata

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.
PUT
$curl -X PUT /api/data/tasks/taskId/metadata \
> -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}