Get Project Block
get
Get all blocks for a project
Authorizations
Path parameters
projectIdstringRequired
Query parameters
limitnumberOptionalDefault:
100
afterstring · uuidOptional
Parameter for cursor-based pagination. Specify task ID to get blocks after it. Do not specify both before and after.
beforestring · uuidOptional
Parameter for cursor-based pagination. Specify task ID to get blocks before it. Do not specify both before and after.
Responses
200
Blocks
application/json
4XX
Error description
application/json
get
GET /api/v1/projects/{projectId}/blocks HTTP/1.1
Host: www.taskade.com
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
{
"ok": true,
"items": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"text": "text",
"completed": false
}
]
}
Last updated