API Documentation
Hooks
Tasks
List and Search
GET
/
rest
/
tasks
List and Search
Copy
curl --request GET \
--url https://copilotz.com/rest/tasks \
--header 'Authorization: Bearer <token>'
Copy
[
{
"extId": "This is an external ID if you want to match an external system.",
"workflow": 1,
"currentStep": 1,
"status": "active",
"name": "Task Name",
"description": "This is the description you want to give for your task.",
"context": {}
}
]
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200 - application/json
Successful response
The response is of type object[]
.
List and Search
Copy
curl --request GET \
--url https://copilotz.com/rest/tasks \
--header 'Authorization: Bearer <token>'
Copy
[
{
"extId": "This is an external ID if you want to match an external system.",
"workflow": 1,
"currentStep": 1,
"status": "active",
"name": "Task Name",
"description": "This is the description you want to give for your task.",
"context": {}
}
]
Assistant
Responses are generated using AI and may contain mistakes.