List objective tasks
$ cadenya objectives:tasks list
GET/v1/objectives/{objectiveId}/tasks
List objective tasks
cadenya objectives:tasks list \
--api-key 'My API Key' \
--objective-id objectiveId{
"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
}
}