Endpoint
Authentication
All requests must include a valid Dashboard Bearer token in theAuthorization header.
| Header | Type | Required | Description |
|---|---|---|---|
Authorization | string | Yes | Bearer <token> — obtain from Login |
Content-Type | string | Yes | application/json |
Request Body
All parameters are optional. Omit the body entirely to retrieve the most recent activity log entries.An object of filter criteria to narrow results.
Return entries on or after this date. Format:
YYYY-MM-DD.Return entries on or before this date. Format:
YYYY-MM-DD.Free-text search term applied across log fields.
Maximum number of results to return. Defaults to
100.ISO 8601 timestamp cursor for keyset pagination. Pass the
created_at value of the last result from the previous page.UUID cursor for keyset pagination. Pass the
id of the last result from the previous page.Example Request Body
Response
Returns an array ofActivityLog entries matching your filter criteria.
| Field | Type | Description |
|---|---|---|
id | string (uuid) | Unique log entry identifier |
endpoint | string | The API endpoint path that was called |
method | string | HTTP method used (e.g., POST, GET) |
response_code | integer | HTTP status code returned |
status | string | Outcome: success or error |
message | string | Response message associated with the request |
ip_address | string | IP address that made the request |
created_at | string (ISO 8601) | Timestamp when the request was recorded |