Skip to main content
GET
/
v1
/
timeline
List notes
curl --request GET \
  --url https://api.prod.getdex.com/v1/timeline/ \
  --header 'Authorization: Bearer <token>'
{
  "error": true,
  "data": {
    "items": [
      {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "title": "<string>",
        "content": "<string>",
        "type": "<string>",
        "is_pinned": true,
        "created_at": "<string>",
        "updated_at": "<string>"
      }
    ],
    "nextCursor": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "count": 123
  }
}

Use cases

  • Display a timeline of interactions for a specific contact
  • Show a global activity feed across all contacts
  • Export interaction history for reporting or backup
Results are paginated. Use the nextCursor value from the response to fetch the next page.

Authorizations

Authorization
string
header
required

Use your Dex API key (e.g. dex_abc123...) as the Bearer token.

Query Parameters

take
integer
Required range: x >= 1
include
object
cursor
string<uuid>
contactId
string<uuid>

Response

Successful response

error
boolean
required
data
object
required