Understand and manage your running flows
Contents
Job API endpoints
Relative URI | Method | Success Code | Description |
/jobs | GET | 200 | Get all jobs. The following query parameters are supported: _integrationId, _exportId, _importId, _flowId, _flowJobId, _bulkJobId, _flowId_in, createdAt_lte, createdAt_gte, status, numSuccess_lte, numSuccess_gte, numExport_lte, numExport_gte, numIgnore_lte, numIgnore_gte, retriable, type, and type_in |
/jobs/<_id> | GET | 200 | Get a specific job. |
Job API examples
GET /v1/jobs?type=import&status=running HTTP/1.1
Host: api.integrator.io
Authorization: Bearer my_api_token
Sample Response:
[ { "_id":"59ee8f9503785d04d846a88e", "type":"import", "_importId":"537d1ff57ab1870200000002", "_flowJobId":"59ee8f80e41d93365ef1b9a9", "startedAt":"2017-10-24T00:55:49.128Z", "status":"running", "numError":0, "numSuccess":1, "numIgnore":0, "numPagesProcessed":1, "oIndex":1, "retriable":false, "createdAt":"2017-10-24T00:55:49.128Z", "lastModified":"2017-10-24T00:55:49.642Z" } ]
Comments
0 comments
Please sign in to leave a comment.