Action Notification Exports
An ActionNotificationExport is an operation that provides access to outgoing webhook logs. Querying webhook logs is a little different than other APIs.
All queries against the archive must be submitted as Exports. (Even our Web UI creates an Export behind the scenes.)
In any query field in this API, you may specify multiple values separated by commas. That means that commas cannot be searched for themselves, and neither can single quotation marks.
Use the following steps to complete an export:
- Initiate the export by using the Create Action Notification Export endpoint. Non Site Admins must query by folder or path.
- Using the
idfrom the response to step 1, poll the Show Action Notification Export endpoint. Check thestatusfield until it isready. - You can download the results of the export as a CSV file using the
results_urlfield in the response from step 2. If you want to page through the records in JSON format, use the List Action Notification Export Results endpoint, passing theidthat you got in step 1 as theaction_notification_export_idparameter. Check theX-Files-Cursor-Nextheader to see if there are more records available, and resubmit the same request with acursorparameter to fetch the next page of results. Unlike most API Endpoints, this endpoint does not provideX-Files-Cursor-Prevcursors allowing reverse pagination through the results. This is due to limitations in Amazon Athena, the underlying data lake for these records.
If you intend to use this API for high volume or automated use, please contact us with more information about your use case.
Example Queries
- History for a folder:
{ "query_folder": "path/to/folder" } - History for a range of time:
{ "start_at": "2021-03-18 12:00:00", "end_at": "2021-03-19 12:00:00" } - History of all notifications that used GET or POST:
{ "query_request_method": "GET,POST" }
Show Action Notification Export
SDK Method
actionnotificationexport.Find()
Return Object
ActionNotificationExport
Authorization Requirement
Requires either a Site-Wide API key or User API key or session from a User with Folder Admin permissions.
ActionNotificationExportFindParams Fields
| Field | Description |
|---|---|
| Id int64 Required | Action Notification Export ID. |
Create Action Notification Export
SDK Method
actionnotificationexport.Create()
Return Object
ActionNotificationExport
Authorization Requirement
Requires either a Site-Wide API key or User API key or session from a User with Folder Admin permissions.
ActionNotificationExportCreateParams Fields
| Field | Description |
|---|---|
| UserId int64 | User ID. Provide a value of 0 to operate the current session's user. |
| StartAt string | Start date/time of export range. |
| EndAt string | End date/time of export range. |
| QueryMessage string | Error message associated with the request, if any. |
| QueryRequestMethod string | The HTTP request method used by the webhook. |
| QueryRequestUrl string | The target webhook URL. |
| QueryStatus string | The HTTP status returned from the server in response to the webhook request. |
| QuerySuccess boolean | true if the webhook request succeeded (i.e. returned a 200 or 204 response status). false otherwise. |
| QueryPath string | Return notifications that were triggered by actions on this specific path. |
| QueryFolder string | Return notifications that were triggered by actions in this folder. |
The ActionNotificationExport Object
Some of the methods above return a ActionNotificationExport object. The attributes of this object are listed below.
| Attribute | Description |
|---|---|
| Id int64 | History Export ID |
| ExportVersion string | Version of the underlying records for the export. |
| StartAt date-time | Start date/time of export range. |
| EndAt date-time | End date/time of export range. |
| Status string | Status of export. Valid values: building, ready, or failed |
| QueryPath string | Return notifications that were triggered by actions on this specific path. |
| QueryFolder string | Return notifications that were triggered by actions in this folder. |
| QueryMessage string | Error message associated with the request, if any. |
| QueryRequestMethod string | The HTTP request method used by the webhook. |
| QueryRequestUrl string | The target webhook URL. |
| QueryStatus string | The HTTP status returned from the server in response to the webhook request. |
| QuerySuccess boolean | true if the webhook request succeeded (i.e. returned a 200 or 204 response status). false otherwise. |
| ResultsUrl string | If status is ready, this will be a URL where all the results can be downloaded at once as a CSV. |