API Reference
Get Job
Getting Started
Advanced Features
Walkthroughs
Reference
- API Reference
- CLI Reference
- SDK Reference
Errors
API Reference
Get Job
Get information about a specific job by id.
GET
/
v2
/
jobs
/
{job_id}
curl --request GET \
--url https://mango.sievedata.com/v2/jobs/{job_id} \
--header 'X-API-Key: <api-key>'
{
"id": "<string>",
"function_id": "<string>",
"organization_id": "<string>",
"function": {
"name": "<string>",
"owner_name": "<string>"
},
"status": "<string>",
"created_at": "2024-12-15T01:41:59.195000",
"started_at": "2024-12-15T01:41:59.195000",
"completed_at": "2024-12-15T01:41:59.195000",
"inputs": {},
"outputs": [],
"error": "<string>",
"visibility": "<string>",
"run_id": "<string>",
"children": {},
"restarts": [
{
"timestamp": "2024-12-15T01:41:59.195000",
"reason": "<string>",
"type": "preemption",
"run_id": "<string>"
}
]
}
Authorizations
The Sieve API key to authenticate with.
Path Parameters
The ID of the job.
Query Parameters
Exclude the first N outputs.
Response
200
application/json
Successful Response
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://mango.sievedata.com/v2/jobs/{job_id} \
--header 'X-API-Key: <api-key>'
{
"id": "<string>",
"function_id": "<string>",
"organization_id": "<string>",
"function": {
"name": "<string>",
"owner_name": "<string>"
},
"status": "<string>",
"created_at": "2024-12-15T01:41:59.195000",
"started_at": "2024-12-15T01:41:59.195000",
"completed_at": "2024-12-15T01:41:59.195000",
"inputs": {},
"outputs": [],
"error": "<string>",
"visibility": "<string>",
"run_id": "<string>",
"children": {},
"restarts": [
{
"timestamp": "2024-12-15T01:41:59.195000",
"reason": "<string>",
"type": "preemption",
"run_id": "<string>"
}
]
}