curl --request GET \
--url https://api.yorlet.com/v1/tasks \
--header 'Authorization: <api-key>'{
"count": 1,
"has_more": false,
"object": "list",
"data": [
{
"id": "<string>",
"created": 123,
"object": "task",
"title": "<string>",
"description": "<string>",
"due_date": 123,
"priority": 1.5,
"status": "to_do",
"assignee": {
"id": "<string>",
"created": 123,
"object": "user",
"email": "<string>",
"name": "<string>",
"account": "<string>",
"deleted": false
},
"account": "<string>",
"deleted": false,
"important": false,
"checklist_items": {}
}
]
}curl --request GET \
--url https://api.yorlet.com/v1/tasks \
--header 'Authorization: <api-key>'{
"count": 1,
"has_more": false,
"object": "list",
"data": [
{
"id": "<string>",
"created": 123,
"object": "task",
"title": "<string>",
"description": "<string>",
"due_date": 123,
"priority": 1.5,
"status": "to_do",
"assignee": {
"id": "<string>",
"created": 123,
"object": "user",
"email": "<string>",
"name": "<string>",
"account": "<string>",
"deleted": false
},
"account": "<string>",
"deleted": false,
"important": false,
"checklist_items": {}
}
]
}API Key authentication. Use "Bearer YOUR_API_KEY".
A object with a data property that contains an array of tasks.
Was this page helpful?