Documentation Index
Fetch the complete documentation index at: https://docs.mossdesk.com/llms.txt
Use this file to discover all available pages before exploring further.
Get the activity timeline for a contact — interactions, deal changes, follow-ups, and commitments in chronological order.
GET /api/v1/contacts/:id/activity
curl "https://api.mossdesk.com/api/v1/contacts/cnt_abc123/activity" \
-H "X-API-Key: moss_k_..."
Response
{
"data": [
{
"type": "interaction",
"event": "meeting logged",
"timestamp": "2026-02-08T14:00:00Z",
"details": {
"interaction_id": "int_abc123",
"notes": "Discussed Q2 roadmap"
}
},
{
"type": "deal",
"event": "stage moved to proposal",
"timestamp": "2026-02-07T10:00:00Z",
"details": {
"deal_id": "deal_abc123",
"from_stage": "lead",
"to_stage": "proposal"
}
}
],
"meta": {
"page": 1,
"per_page": 25,
"total": 12,
"total_pages": 1
}
}
Deal activity
Get the activity timeline for a deal.
GET /api/v1/deals/:id/activity
curl "https://api.mossdesk.com/api/v1/deals/deal_abc123/activity" \
-H "X-API-Key: moss_k_..."