List Contact's Logs
Returns the activity log entries for a contact β status changes, manual notes, sent emails, and other audit entries. Timestamps are localized to the tenant's configured timezone.
Path Parameters
dsidstringrequired
The dsid of the contact.
HTTP Response Examples
200
{
"Status": true,
"Message": "",
"Response": {
"logs": [
{
"id": 10596870,
"dsid": "5a0d669ab6984125a1c63aaacfd0a9cd",
"useruid": "gx7y3ki24kqn2y9e",
"activity_type": 30,
"properties": {
"Note": "Changed status from <strong>Active</strong> to <strong>Deleted</strong>"
},
"created": "2025-09-03T12:27:04.243"
},
{
"id": 10596875,
"dsid": "5a0d669ab6984125a1c63aaacfd0a9cd",
"useruid": "",
"activity_type": 0,
"properties": {
"Note": "test"
},
"created": "2025-09-03T12:30:04.773"
}
]
}
}
HTTP Response Parameters
logsarray
Array of log entries. Each has id, dsid, useruid (the acting user, empty for system/API actions), activity_type (numeric enum), properties (type-specific payload, often including a Note field), and created timestamp.