Skip to main content
GET
/
v3
/
contacts
/
{id}
/
activities
Get activities for a contact
curl --request GET \
  --url https://api.reply.io/v3/contacts/{id}/activities \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": 123,
      "date": "2023-11-07T05:31:56Z",
      "activityType": "<string>",
      "sourceType": "<string>",
      "userName": "<string>",
      "userId": 123,
      "content": {}
    }
  ],
  "hasMore": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.reply.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Authenticate every request with a Bearer token. Pass your Reply API key in the Authorization header:

Authorization: Bearer <your-api-key>

Get your API key from the Reply dashboard: Settings → API Key.

Path Parameters

id
integer
required

Contact ID

Query Parameters

top
integer

Maximum number of activities to return

skip
integer

Number of activities to skip

Response

Contact activities retrieved successfully

items
object[]
hasMore
boolean