GET datasets/jobs/:jobId
Description
Retrieve job status for a given dataset. The job ID of the dataset you want to access is required as a path parameter for this endpoint. If you want to retrieve the contents of a dataset, call the /records:retrieve endpoint.
Path Parameter
| Path Parameter | Description | Note |
|---|---|---|
:id | Passed through the URL. This job ID can be found in the response body response body of POST /datasets/:id/uploadURL or POST /datasets/:id/records:load. | Required |
URL Structure
https://app.movementinfrastructure.org/api/v1/datasets/jobs/:jobsid
Example Response Body
{
"datasetJobId": "12023400-123b-5678-1234-121201220110",
"datasetId": "812e3xam4-5678-91ple-abdc-312692jk2lm",
"workspace": {
"workspaceId": 10001,
"displayName": "Name Example"
},
"dateCreated": "2025-05-05T20:53:33.098718",
"createdBy": {
"userId": 101010,
"displayName": "An Example CRM App",
"email": "[email protected]"
},
"jobType": "JunoUploadUrl",
"currentStatus": {
"datasetJobLogId": 1012,
"datasetJobStatusCode": 1,
"datasetJobStatusName": "Complete",
"logData": {
"message": "Job Created"
},
"errorData": null,
"dateCreated": "2025-05-05T20:53:33.15503"
},
"datasetParentJobId": null,
"children": null,
"allChildrenSucceeded": null
}Updated 21 days ago
What’s Next