get https://bolt.thena.ai/v3/audit
This API fetches your audiit logs. It supports the following query parameters.
start_date
: the UNIX timestamp in milliseconds, defaults to today at 12AM.end_date
: the UNIX timestamp in milliseconds, defaults to current time.next_cursor
: (optional) - the cursor for pagination
Response parameters
Field Path | Type | Description |
---|---|---|
results[].id | String | Unique identifier of the activity. |
results[].activity | String | Type of activity performed (e.g., DOWNLOAD_REQUEST, CREATE_CONTACT, DELETE_CONTACT, CREATE_FORM). |
results[].changes.body.start_date | Number | Start date of the download request, represented in Unix timestamp format. |
results[].changes.body.end_date | Number | End date of the download request, represented in Unix timestamp format. |
results[].changes.body.file_type | String | Type of file requested (e.g., "json"). |
results[].changes.params.workspaceId | String | Identifier for the workspace where the activity occurred. |
results[].changes.body.name | String | Name of the contact created (in the CREATE_CONTACT activity). |
results[].changes.body.email | String | Email address of the contact created (in the CREATE_CONTACT activity). |
results[].changes.body.account_ids[] | Array | List of account IDs associated with the contact created (in the CREATE_CONTACT activity). |
results[].changes.body.user_id | String | User ID of the contact created (in the CREATE_CONTACT activity). |
results[].changes.params.contactId | String | ID of the contact that was deleted (in the DELETE_CONTACT activity). |
results[].changes.id | String | ID of the form created (in the CREATE_FORM activity). |
results[].created_at | String | Timestamp indicating when the activity was created. |
next_cursor | String | Cursor for paginating through results, or null if there are no more results. |