curl --request GET \
--url 'https://api.stateset.com/api/v1/work-orders/{id}/tasks' \
--header 'Authorization: Bearer YOUR_API_KEY'
{
"tasks": [
{
"actual_hours": null,
"estimated_hours": null,
"id": "string",
"notes": null,
"sequence": 1,
"status": "string",
"task_name": "string",
"work_order_id": "string"
}
],
"total": 1
}
List tasks
GET
/
api
/
v1
/
work-orders
/
{id}
/
tasks
curl --request GET \
--url 'https://api.stateset.com/api/v1/work-orders/{id}/tasks' \
--header 'Authorization: Bearer YOUR_API_KEY'
{
"tasks": [
{
"actual_hours": null,
"estimated_hours": null,
"id": "string",
"notes": null,
"sequence": 1,
"status": "string",
"task_name": "string",
"work_order_id": "string"
}
],
"total": 1
}
Path parameters
string
required
Work order ID
Responses
WorkOrderTaskListResponse
curl --request GET \
--url 'https://api.stateset.com/api/v1/work-orders/{id}/tasks' \
--header 'Authorization: Bearer YOUR_API_KEY'
{
"tasks": [
{
"actual_hours": null,
"estimated_hours": null,
"id": "string",
"notes": null,
"sequence": 1,
"status": "string",
"task_name": "string",
"work_order_id": "string"
}
],
"total": 1
}
⌘I