curl --request GET \
--url https://instance.prod.onboardapp.io/v1/cases/{case_token}/timeline \
--header 'X-API-KEY: <api-key>'{
"data": [
{
"token": "aud_4t8u2v6w",
"event_type": "<string>",
"actor": {
"user_id": "<string>",
"name": "<string>",
"type": "user"
},
"target_type": "case",
"target_token": "<string>",
"details": {},
"ip_address": "<string>",
"created_at": "2023-11-07T05:31:56Z"
}
],
"meta": {
"request_id": "req_9k4m2n1p3q",
"page": {
"cursor": "<string>",
"has_more": true
}
}
}Retrieve the complete audit trail for a case, showing every action taken in chronological order. This is the case-scoped view of the immutable audit log.
curl --request GET \
--url https://instance.prod.onboardapp.io/v1/cases/{case_token}/timeline \
--header 'X-API-KEY: <api-key>'{
"data": [
{
"token": "aud_4t8u2v6w",
"event_type": "<string>",
"actor": {
"user_id": "<string>",
"name": "<string>",
"type": "user"
},
"target_type": "case",
"target_token": "<string>",
"details": {},
"ip_address": "<string>",
"created_at": "2023-11-07T05:31:56Z"
}
],
"meta": {
"request_id": "req_9k4m2n1p3q",
"page": {
"cursor": "<string>",
"has_more": true
}
}
}Project-scoped API key for server-to-server authentication. Obtain keys from the Zenoo dashboard under Project Settings > API Keys. Staging and production environments use separate keys.
Case token.
Pagination cursor from a previous response. Pass to fetch the next page.
Maximum number of items to return per page.
1 <= x <= 100