GET
/
v1
/
activities
curl --request GET \
  --url https://api.useconquest.com/v1/activities \
  --header 'Authorization: Bearer <token>'
{
  "page": 1,
  "page_size": 10,
  "total_activities": 1235,
  "activities": [
    {
      "id": "cm5fkwwup0006dntb34yzw7dd",
      "external_id": "ext_123",
      "title": "Activity Title",
      "message": "This is an activity message",
      "thread_id": "thread_123",
      "reply_to": "cm5fkwwup0006dntb34yzw7dd",
      "react_to": "cm5fkwwup0006dntb34yzw7dd",
      "invite_to": "cm5fkwwup0006dntb34yzw7dd",
      "activity_type_id": "cm5fkwwup0006dntb34yzw7dd",
      "channel_id": "cm5fkwwup0006dntb34yzw7dd",
      "event_id": "cm5fkwwup0006dntb34yzw7dd",
      "member_id": "cm5fkwwup0006dntb34yzw7dd",
      "workspace_id": "cm5fkwwup0006dntb34yzw7dd",
      "created_at": "2025-01-01T00:00:00Z",
      "updated_at": "2025-01-01T00:00:00Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

page
integer
default:1

The page number to return

page_size
integer
default:10

The number of results to return per page

Response

200
application/json
Successful response
page
number
Example:

1

page_size
number
Example:

10

total_activities
number
Example:

1235

activities
object[]