Skip to main content
GET
/
activities
get activities
curl --request GET \
  --url https://api.example.com/activities \
  --header 'Authorization: Bearer <token>'
{
  "results": [
    {
      "id": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "related_id": "<string>",
      "team_id": "<string>",
      "team_slug": "<string>",
      "user": "<string>",
      "method": "<string>",
      "entity_type": "<string>",
      "project_id": "<string>",
      "project_slug": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

API key in Bearer token format

Query Parameters

page
integer
default:0
page_size
integer
default:10
project_id
string | null
project_slug
string | null
order_by
enum<string>
default:created_at
Available options:
created_at,
updated_at
order
enum<string>
default:desc
Available options:
desc,
asc

Response

Successful Response

results
ActivitySchema · object[]