Packs
Retrieve a list of ingestion batch executions for the given root ingestion id.
Retrieve the ingestion batch executions of a root ingestion for debugging purpose.
get/packs/{packId}/tenantId/{tenantId}/rootIngestionId/{rootIngestionId}/ingestionBatchExecutions
Path parameters
packIdinteger required
ID of a Pack
tenantIdstring required
ID of the tenant.
rootIngestionIdstring uuid required
ID of the root ingestion.
Query parameters
pageTokenstring
An opaque token used to fetch the next page of results.
limitinteger
Maximum number of results to return in this query.
datasourcestring
Only show batch executions for this datasource (sync table).
executionType'FULL' | 'INCREMENTAL'
Type of an ingestion batch execution.
Only show batch executions with this execution type.
includeDeletedIngestionsboolean
Include deleted ingestion executions in the response
ingestionExecutionIdstring
Only retrieve this single batch execution.
ingestionIdstring
Only show batch executions for this sync table ingestion.
ingestionStatus'QUEUED' | 'STARTED' | 'CANCELLED' | 'UP_FOR_RETRY' | 'COMPLETED' | 'FAILED'
Status of the ingestion execution.
Only show batch executions with this status.
Response
list of ingestion batch executions.
Example response
{
"items": [
{
"ingestionStatusCounts": {
"COMPLETED": 12,
"FAILED": 5,
"STARTED": 4
}
}
],
"nextPageToken": "eyJsaW1pd"
}