Get all planning updates for the planning with the provided id (UUID)
Planning Status API (3.0)
The Planning Status Service keeps track of various planning status results for processing trip data and provides endpoints to easily retrieve which planning imports succeeded and which failed, when and how.
Make sure you request the Auth API first
Download OpenAPI description
Overview
Languages
Servers
Mock server
https://developer.simacan.com/_mock/openapi/planning/planning-status/
Production Environment
https://planning-status-api.services.simacan.com/api/public/v3/
Staging Environment
https://planning-status-api-stg.services.simacan.com/api/public/v3/
- Mock serverhttps://developer.simacan.com/_mock/openapi/planning/planning-status/get_by_planning_id/{planningUUID}
- Production Environmenthttps://planning-status-api.services.simacan.com/api/public/v3/get_by_planning_id/{planningUUID}
- Staging Environmenthttps://planning-status-api-stg.services.simacan.com/api/public/v3/get_by_planning_id/{planningUUID}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://developer.simacan.com/_mock/openapi/planning/planning-status/get_by_planning_id/{planningUUID}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'The planning import attempt with all intermediate steps for the given ID
This is the Simacan generated universally unique identifier
Example: "39e8d454-87b4-427d-a4f3-c50ed2677644"
The creation time of the planning
Example: "2020-09-02T12:26:47.705Z"
Defines current status of the job
Enum"ShouldStart""Running""Succeeded""Failed"
Example: "ShouldStart"
Response
application/json
{ "id": "39e8d454-87b4-427d-a4f3-c50ed2677644", "name": "peterson/2020-09-02T12:26:47.585271Z.json", "planningCreationTime": "2020-09-02T12:26:47.705Z", "shipper": "peterson", "triggerType": "Automatic", "status": "ShouldStart", "file": { "fileName": "peterson/2020-09-02T12:26:47.585271Z.json", "directory": "simacan-planning-data" }, "tags": { "mimeType": "application/json", "version": "1", "schema": "json", "source": "planning-receive-api" }, "steps": [ { … } ] }