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[]
.
curl --request GET \
--url https://copilotz.com/rest/tasks \
--header 'Authorization: Bearer <token>'
[
{
"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": {}
}
]
curl --request GET \
--url https://copilotz.com/rest/tasks \
--header 'Authorization: Bearer <token>'
[
{
"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": {}
}
]
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Successful response
The response is of type object[]
.