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

Authorizations

X-API-Key
string
header
required

API key passed in the X-API-Key header

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