Workflow status times API
This requires activation on the account, please contact support@aha.io to request access.
Create a workflow status time for a page
POST /api/v1/pages/:page_id/workflow_status_times
| Name | Description |
|---|---|
workflow_status_id * | Numeric ID of the workflow status |
started_at | UTC timestamp (in ISO8601 format) when the record entered this status |
ended_at | UTC timestamp (in ISO8601 format) when the record left this status. Null if still in this status |
Example request
POST /api/v1/pages/1051981226/workflow_status_timesExample CURL command
curl "https://company.aha.io/api/v1/pages/1051981226/workflow_status_times" -d '{"workflow_status_time":{"workflow_status_id":369936966,"started_at":"2019-01-01T00:00:00Z","ended_at":"2019-01-01T00:00:00Z"}}' -X POST \
-H "Authorization: Bearer 584b6d6b83405011f8c6903d2379f4afdf824cef867db391b7bcb5995f603a76" \
-H "Content-Type: application/json" \
-H "Accept: application/json"Request
authorization: Bearer 584b6d6b83405011f8c6903d2379f4afdf824cef867db391b7bcb5995f603a76
contentType: application/json
accept: application/json
Request body
Response
Status: 200 OK
contentType: application/json; charset=utf-8
Response body