🚀 We are preparing our documentation and source code for our first release. For any questions & to meet the founders, please fill in this form
curl --request GET \
--url https://api.example.com/api/task/v1/{task_id}/timeline{
"items": [
{
"created_at": "2023-11-07T05:31:56Z",
"event_payload": {
"status": "submitted",
"type": "task-status-update",
"status_message_id": "<unknown>"
},
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"task_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
],
"next_page_token": "<string>"
}Get the timeline history of a task with pagination
curl --request GET \
--url https://api.example.com/api/task/v1/{task_id}/timeline{
"items": [
{
"created_at": "2023-11-07T05:31:56Z",
"event_payload": {
"status": "submitted",
"type": "task-status-update",
"status_message_id": "<unknown>"
},
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"task_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
],
"next_page_token": "<string>"
}