Timeline
Count notes
Return the total number of notes matching the given filters. Useful for displaying counts without fetching full note records.
GET /v1/timeline/count
Parameters
Query parameters
where
object
Responses
200 — Successful response
Content-Type: application/json
error
boolean required
data
object required
data.count
integer required
Example
{
"error": false,
"data": {
"count": 0
}
}
400
No response body.
401
No response body.
403
No response body.
404
No response body.
429
No response body.
500
No response body.
Code samples
curl https://api.prod.getdex.com/v1/timeline/count \
--header 'Authorization: Bearer YOUR_API_KEY'
fetch('https://api.prod.getdex.com/v1/timeline/count', {
headers: {
Authorization: 'Bearer YOUR_API_KEY'
}
})
requests.get(
"https://api.prod.getdex.com/v1/timeline/count",
headers={
"Authorization": "Bearer YOUR_API_KEY"
}
)
Create a note
Create a new note or timeline entry. A note can be associated with one or more contacts and includes a type (e.g., meeting, call, email) and rich text content.
Get a note
Retrieve a single note by its unique ID. Notes are timeline entries that record interactions, meeting notes, and other activities related to contacts.

