Job Status API API Reference
Get the current status of one or more jobs
API Endpoint
https://api.talroo.com/v2
Schemes: https
Version: 2.0.0
Paths
Job Status
GET
/job/{jobId}/status
jobId:
integer
in path
(no description)
200 OK
Success
Response Example (200 OK)
{
"5653174332": "LIVE"
}
Job Statuses
POST
/job/status
undefined
Request Example
{
"ids": [
"4205838285",
"5653174332",
"2958842910",
"2348690358"
]
}
200 OK
Success
Response Example (200 OK)
[
{
"4205838285": "LIVE"
},
{
"5653174332": "LIVE"
},
{
"2958842910": "EXPIRED"
},
{
"2348690358": "UNKNOWN"
}
]
Schema Definitions
JobStatusArray: array
Example
[
{
"4205838285": "LIVE"
},
{
"5653174332": "LIVE"
},
{
"2958842910": "EXPIRED"
},
{
"2348690358": "UNKNOWN"
}
]
JobStatus: object
Example
{
"5653174332": "LIVE"
}
JobStatusRequest: object
- ids:
- string[]
-
string
Example
{
"ids": [
"4205838285",
"5653174332",
"2958842910",
"2348690358"
]
}