GET
/
tasks
curl --request GET \
  --url https://sandbox.withclasp.com/tasks \
  --header 'Authorization: Bearer <token>'
{
  "next": "<string>",
  "previous": "<string>",
  "results": [
    {
      "id": "<string>",
      "category": "member_update",
      "changes": {},
      "memo": "<string>",
      "employer": "<string>",
      "associated_entity": {},
      "assignee": "<string>",
      "completed_at": "2023-11-07T05:31:56Z",
      "started_at": "2023-11-07T05:31:56Z",
      "created_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

API Key authentication with required prefix "Bearer"

Query Parameters

completed
string
cursor
string

The pagination cursor value.

page_size
integer

Number of results to return per page.

Response

200 - application/json
next
string | null
previous
string | null
results
object[]