v1
latestOpenAPI 3.0.02026-08-064311,0881.3 MBarchiveManagement
Get ingestion jobs for an Archive Source.
Get a list of all the ingestion jobs created on an Archive Source. The response is paginated with a default limit of 10 jobs per page.
get/v1/archive/{sourceId}/jobs
Path parameters
sourceIdstring required
Example:000000000606C009
The identifier of an Archive Source.
Query parameters
limitinteger
Limit the number of jobs returned in the response. The number of jobs returned may be less than the limit.
tokenstring
Continuation token to get the next page of results. A page object with the next continuation token is returned in the response body. Subsequent GET requests should specify the continuation token to get the next page of results. token is set to null when no more pages are left.
Response
A paginated list of ingestion jobs for an Archive Source.
Example response
{
"data": [
{
"startTime": "2018-10-16T09:10:00Z",
"endTime": "2018-10-16T10:10:00Z",
"id": "4e214571-cf27-4114-93e6-69a98c017f3",
"totalObjectsScanned": 25,
"totalObjectsIngested": 10,
"totalBytesIngested": 100,
"status": "Scanning",
"createdAt": "2018-10-16T09:10:00Z",
"createdBy": "0000000006743FDD"
}
]
}