Task_executions
API Key Scope: task_executions / 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 name
Filter on task workflow type
Filter on task workflow action
Filter on task source type
Filter on task destination type
Filter on status
Filter on log time
Filter on job started
Filter on job finished
Filter on to process size
Filter on processed size
Filter on to process files
Filter on processed files
Filter on finalized files
Filter on estimation time
Filter on bandwidth
List of task executions.
GET /api/v2/tasks/{task_id}/task_executions HTTP/1.1
Host: localhost
Authorization: Basic username:password
Accept: */*
List of task executions.
{
"count": 1,
"task_executions": [
{
"id": "1542797273225418555",
"task_id": 1,
"name": "text",
"workflow_type": "active_archive",
"workflow_action": "copy",
"source_type": "container",
"destination_type": "container",
"status": "finished_with_warnings",
"progress": 1,
"log_time": "2018-11-21T09:48:09.000Z",
"job_started": "2018-11-21T10:47:53.000Z",
"job_finished": "2018-11-21T10:48:08.000Z",
"to_process_size": 16515610,
"processed_size": 12115125,
"to_process_files": 126,
"processed_files": 113,
"finalized_files": 126,
"estimation_time": 1,
"bandwidth": 1
}
]
}API Key Scope: task_executions / index
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.
If false, only includes the last correct execution of a task.
trueFilter on id
Filter on task id
Filter on name
Filter on task workflow type
Filter on task workflow action
Filter on task source type
Filter on task destination type
Filter on status
Filter on log time
Filter on job started
Filter on job finished
Filter on creation date
Filter on modification date
Filter on to process size
Filter on processed size
Filter on to process files
Filter on processed files
Filter on finalized files
Filter on estimation time
Filter on bandwidth
List of task executions.
GET /api/v2/task_executions HTTP/1.1
Host: localhost
Authorization: Basic username:password
Accept: */*
List of task executions.
{
"count": 1,
"task_executions": [
{
"id": "1542797273225418555",
"task_id": 1,
"name": "text",
"workflow_type": "active_archive",
"workflow_action": "copy",
"source_type": "container",
"destination_type": "container",
"status": "finished_with_warnings",
"progress": 1,
"log_time": "2018-11-21T09:48:09.000Z",
"job_started": "2018-11-21T10:47:53.000Z",
"job_finished": "2018-11-21T10:48:08.000Z",
"to_process_size": 16515610,
"processed_size": 12115125,
"to_process_files": 126,
"processed_files": 113,
"finalized_files": 126,
"estimation_time": 1,
"bandwidth": 1
}
]
}API Key Scope: task_executions / show
Numeric ID of task execution.
A specific task execution.
The requested resource was not found. The detailed error will be of type not_found.
GET /api/v2/task_executions/{task_execution_id} HTTP/1.1
Host: localhost
Authorization: Basic username:password
Accept: */*
{
"id": "1542797273225418555",
"task_id": 1,
"name": "text",
"workflow_type": "active_archive",
"workflow_action": "copy",
"source_type": "container",
"destination_type": "container",
"status": "finished_with_warnings",
"progress": 1,
"log_time": "2018-11-21T09:48:09.000Z",
"job_started": "2018-11-21T10:47:53.000Z",
"job_finished": "2018-11-21T10:48:08.000Z",
"to_process_size": 16515610,
"processed_size": 12115125,
"to_process_files": 126,
"processed_files": 113,
"finalized_files": 126,
"estimation_time": 1,
"bandwidth": 1
}Last updated
Was this helpful?