List objective tasks
GET/v1/objectives/{objectiveId}/tasks
List objective tasks
curl https://api.cadenya.com/v1/objectives/$OBJECTIVE_ID/tasks \
-H "Authorization: Bearer $CADENYA_API_KEY"{
"items": [
{
"data": {
"completed": true,
"number": 0,
"task": "task",
"completedAt": "2019-12-27T18:11:19.117Z"
},
"metadata": {
"id": "id",
"name": "name"
}
}
],
"pagination": {
"nextCursor": "nextCursor",
"total": 0
}
}Returns Examples
{
"items": [
{
"data": {
"completed": true,
"number": 0,
"task": "task",
"completedAt": "2019-12-27T18:11:19.117Z"
},
"metadata": {
"id": "id",
"name": "name"
}
}
],
"pagination": {
"nextCursor": "nextCursor",
"total": 0
}
}