Fetch job
A Fetch Job object contains information about a Fetch Job. The following properties are present:
Name |
Type |
Description |
---|---|---|
|
A link to the resource for this job | |
|
A link to the user entity resource that submitted this job. | |
|
A description of the current state | |
|
String |
The state of the job. Possible values: Created, Pending, InProgress, Completed. |
|
String |
The condition of the job. Possible values: Pending, Success, Failure. |
|
String |
String containing an ISO 8601 formatted date and time when this job was started. |
|
String |
String containing an ISO 8601 formatted date and time when this job was completed. |
|
Number |
The number of files present in the job. |
|
Number |
The number of files that have been completed. |
|
A link to the files resource for this job. |
Example
{
"state_description":"InProgress",
"state":"InProgress",
"condition":"Pending",
"started_on":"...",
"completed_on":null,
"file_count":215,
"files_completed":100,
"self":{
"href":"http://<hostname>/api/fetchjobs/1493",
"title":"This fetch job."
},
"targets":{
"href":"http/<hostname>/api/fetchjobs/1493/files",
"title":"The collection of files for this Fetch Job."
}
}