Download Postman collection
Understand and manage your audit logs
This API is typically needed to monitor and provide insight into the history, success, or failure of the resource.
Relative URI |
Method |
Success code |
Description |
---|---|---|---|
|
|
|
Get all audit information for your account. |
|
|
|
Get a log for a specific flow. |
|
|
|
Get a log for a specific connection. |
|
|
|
Get a log for a specific integration. |
|
|
|
Get a log for a specific export. |
|
|
|
Get a log for a specific import. |
|
|
|
Get a log for a specific My API. |
|
|
|
Get a log for a specific script. |
|
|
|
Get a log for a specific access token. |
Sample GET response
"audit": [ { "_id": "•••••••••••••", "resourceType": "export", "_resourceId": "••••••••••••••••••••••••••", "source": "UI", "fieldChanges": [ { "newValue": { "resource": "customers", "version": "v2", "operation": "getacountof_customergroups" }, "fieldPath": "assistantMetadata" }, { "oldValue": "RESTExport", "newValue": "RESTExport", } ]
Delta examples
This endpoint allows delta exporting by passing in a to and from parameter.
/audit?from=2023-11-07T23:14:43.032Z&to=2023-11-08T23:14:43.032Z
This extracts data from November 7, 2023 to November 8, 2023.
/audit?from=2023-11-07T23:14:43.032Z
This extracts data from November 7, 2023.
/audit?to=2023-11-08T23:14:43.032Z
This extracts data up to November 8, 2023.
Comments
This endpoint allows delta exporting by passing in a to and from parameter. For example,
Please sign in to leave a comment.