Task_metadata
API Key Scope: task_metadata / index
Numeric ID or name of task. Task names are not unique, it's recommanded to use numeric ID.
The number of items to display for pagination.
The number of items to skip for pagination.
Sort results by attribute.
Can sort on multiple attributes, separated by |.
Order direction can be suffixing the attribute by either :asc (default) or :desc.
Filter on id
Filter on key
Filter on value
List of task metadata.
GET /api/v2/tasks/{task_id}/task_metadata HTTP/1.1
Host: localhost
Authorization: Basic username:password
Accept: */*
List of task metadata.
{
"count": 1,
"task_metadata": [
{
"id": 1,
"key": "text",
"value": "text"
}
]
}API Key Scope: task_metadata / create
Numeric ID or name of task. Task names are not unique, it's recommanded to use numeric ID.
A specific task metadatum.
The received resource was not correctly formatted.
POST /api/v2/tasks/{task_id}/task_metadata HTTP/1.1
Host: localhost
Authorization: Basic username:password
Content-Type: application/json
Accept: */*
Content-Length: 29
{
"key": "text",
"value": "text"
}{
"id": 1,
"key": "text",
"value": "text"
}API Key Scope: task_metadata / show
Numeric ID or name of task. Task names are not unique, it's recommanded to use numeric ID.
Numeric ID of task metadatum.
A specific task metadatum.
GET /api/v2/tasks/{task_id}/task_metadata/{task_metadatum_id} HTTP/1.1
Host: localhost
Authorization: Basic username:password
Accept: */*
A specific task metadatum.
{
"id": 1,
"key": "text",
"value": "text"
}API Key Scope: task_metadata / update
Numeric ID or name of task. Task names are not unique, it's recommanded to use numeric ID.
Numeric ID of task metadatum.
A specific task metadatum.
The received resource was not correctly formatted.
PUT /api/v2/tasks/{task_id}/task_metadata/{task_metadatum_id} HTTP/1.1
Host: localhost
Authorization: Basic username:password
Content-Type: application/json
Accept: */*
Content-Length: 29
{
"key": "text",
"value": "text"
}{
"id": 1,
"key": "text",
"value": "text"
}API Key Scope: task_metadata / destroy
Numeric ID or name of task. Task names are not unique, it's recommanded to use numeric ID.
Numeric ID of task metadatum.
Task metadatum destroyed.
No content
DELETE /api/v2/tasks/{task_id}/task_metadata/{task_metadatum_id} HTTP/1.1
Host: localhost
Authorization: Basic username:password
Accept: */*
Task metadatum destroyed.
No content
Last updated
Was this helpful?