GET
/
v1
/
tasks
List tasks
curl --request GET \
  --url https://api.steuerboard.com/v1/tasks \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "cmf41ajzv003706un4i99q19z",
      "title": "Task 1",
      "text": "Upload the documents",
      "status": "OPEN",
      "dueDate": "2021-01-01T00:00:00Z",
      "workspaceId": "cmf41ajzv003706un4i99q19z",
      "createdById": "cmf41ajzv003706un4i99q19z",
      "actorType": "USER",
      "parentId": "cmf41ajzv003706un4i99q19z",
      "destinationFolderId": "cmf41ajzv003706un4i99q19z",
      "createdAt": "2021-01-01T00:00:00Z",
      "updatedAt": "2021-01-01T00:00:00Z"
    }
  ],
  "pagination": {
    "nextCursor": "cmf41ajzv003706un4i99q19z",
    "previousCursor": "cmf41ajzv003706un4i99q19z",
    "limit": 20,
    "total": 134
  }
}

Authorizations

Authorization
string
header
required

Bearer token authentication

Query Parameters

limit
number
default:20

The number of items to return

Required range: 1 <= x <= 100
Example:

20

cursor
string<cuid>

The cursor to return the next page of items

Example:

"cmf41ajzv003706un4i99q19z"

clientId
string<cuid>

The ID of the client

Example:

"cmf41ajzv003706un4i99q19z"

workspaceId
string<cuid>

The ID of the workspace

Example:

"cmf41ajzv003706un4i99q19z"

Response

Tasks

data
object[]
required
pagination
object
required