Return a list of jobs belonging to tenant
GET {{baseUrl}}/batch/jobs
Get an array of objects including all active, paused, canceled, and complete jobs in a workspace.
Body
PARAM
Key | Datatype | Required | Description |
fromTime
|
string | Start of time range in ms since 1970 | |
toTime
|
string | End of time range in ms since 1970 |
HEADERS
Key | Datatype | Required | Description |
Accept
|
string |
RESPONSES
status OK
[
{
"id": "<string>",
"tenantId": "<string>",
"type": "<string>",
"userId": "<string>",
"created": "<number>",
"updated": "<number>",
"state": "<string>",
"tasks": [
{
"id": "<string>",
"jobId": "<string>",
"type": "<string>",
"tenantId": "<string>",
"created": "<number>",
"updated": "<number>",
"state": "<string>"
},
{
"id": "<string>",
"jobId": "<string>",
"type": "<string>",
"tenantId": "<string>",
"created": "<number>",
"updated": "<number>",
"state": "<string>"
}
]
},
{
"id": "<string>",
"tenantId": "<string>",
"type": "<string>",
"userId": "<string>",
"created": "<number>",
"updated": "<number>",
"state": "<string>",
"tasks": [
{
"id": "<string>",
"jobId": "<string>",
"type": "<string>",
"tenantId": "<string>",
"created": "<number>",
"updated": "<number>",
"state": "<string>"
},
{
"id": "<string>",
"jobId": "<string>",
"type": "<string>",
"tenantId": "<string>",
"created": "<number>",
"updated": "<number>",
"state": "<string>"
}
]
}
] |
ENDPOINTS