ClientSphereDocs
API reference/Activities

List activities

Returns the workspace activity feed. Not paginated: every activity comes back in one response, with no meta object, and page, limit and search are ignored.

GET
/activities

Authorization

AuthorizationRequiredBearer <token>

API key as Bearer token: Authorization: Bearer sk_live_.... Use sk_live_ prefixed keys for production data and sk_test_ prefixed keys for sandbox/test data.

In: header

X-API-Key<token>

API key via header: X-API-Key: sk_live_.... Use sk_live_ prefixed keys for production data and sk_test_ prefixed keys for sandbox/test data.

In: header

curl -X GET "https://clientsphere.io/api/v1/activities" \
  -H "Authorization: Bearer <token>"

Every activity, unpaginated

{
  "data": [
    {
      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
      "companyId": "8bb73d03-06b4-47c7-80c7-59301f770eda",
      "type": "note_added",
      "title": "string",
      "description": "string",
      "contactId": "b5ec5d98-4bee-4da1-ad24-dde86346cb1d",
      "opportunityId": "3d9795f2-7722-4e1d-b41e-0c5d0c24a902",
      "ticketId": "e3e3e8ea-b02a-4536-85a2-a9c90f4ee74f",
      "salesInboxItemId": "72a0be6a-4cbe-42d0-b99e-64cf89151fbe",
      "userId": 0,
      "createdAt": "2019-08-24T14:15:22Z"
    }
  ]
}