This method cancels a state machine execution
curl -i -X DELETE \ https://system.api.756794052567.rhythmsoftware.com/stepFunctions/:tenantId/:stateMachineName/:executionId \ -H 'Authorization: YOUR_API_KEY_HERE'
Gets the current state of an execution
curl -i -X GET \ https://system.api.756794052567.rhythmsoftware.com/stepFunctions/:tenantId/describe/:executionArn \ -H 'Authorization: YOUR_API_KEY_HERE'
{- "executionArn": "string",
- "input": "string",
- "output": { },
- "start_date": "2019-08-24T14:15:22Z",
- "stateMachineArn": "string",
- "status": "RUNNING",
- "stop_date": "2019-08-24T14:15:22Z"
}
Gets the current state of an execution
curl -i -X GET \ https://system.api.756794052567.rhythmsoftware.com/stepFunctions/:tenantId/public/describe/:executionArn
{- "executionArn": "string",
- "input": "string",
- "output": { },
- "start_date": "2019-08-24T14:15:22Z",
- "stateMachineArn": "string",
- "status": "RUNNING",
- "stop_date": "2019-08-24T14:15:22Z"
}