This page was last edited on June 30, 2020, at 16:09.
Comments or questions about this documentation? Contact us for support!
POST /gtl/tasks/<solution_dbid>/<page>?entity_dbid=<dbid>&entity_type=<department/process/capturePoint/solution>&filter=<filter_name>&order_by=<qualified_attribute_name>&order_direction=<ascending/descending>&snapshot_id=<snapshot_id>
{
"action": "<hold/resume/cancel/modify/modify_restart>",
"include": [ <task_id1>, <task_id2>, ...],
"exclude": [ <task_id1>, <task_id2>, ...],
"attributes":
{
"core":
{
<attribute definitions>
},
"ext":
{
<attribute definitions>
},
"data":
{
<attribute definitions>
}
},
}
{
"content": {
"action": "<hold/resume/cancel/modify/modify_restart>",
"include": [ <task_id1>, <task_id2>, ...],
"exclude": [ <task_id1>, <task_id2>, ...],
"attributes":
{
"core":
{
<attribute definitions>
},
"ext":
{
<attribute definitions>
},
"data":
{
<attribute definitions>
}
}
},
"qlExpression": [<ql_item>, <ql_item>, ...]
}
HTTP 202 Accepted
Location: <URL of the job status>
{
"location": "<URL of the job status>"
}
Example URL:
/gtl/tasks/jobs/statuses/1234
GET <job status URL>
HTTP 202 Accepted
{
"processed": <number of processed tasks>,
"total": <total number of tasks to process>,
"wait": <number of milliseconds>
}
HTTP 200 OK
[
{
"task_id": "<task_id>",
"status": "OK",
"message": <message definition>
},
{
"task_id": "<task_id>",
"status": "ERROR",
"message": <message definition>
},
...
]
HTTP 404 Not Found
The last option may occur if the request was sent without first sending a request for a tasks list, or the snapshot was released in the meantime. When this happens, the client should download the tasks list again, allow the user to review the tasks selection and submit the modification request again.
When bulk operation results have been read, they should be removed to release resources:
DELETE <job status URL>
HTTP 204 No Content
regardless of whether the job was found or not.
If the given job is still running, calling DELETE will stop it as soon as possible. Results can also be removed automatically after some (configurable) time after finishing.