Action Notification Export Results
An ActionNotificationExportResult is a single record containing webhook log information that can be obtained as a part of Action Notification Export request.
List Action Notification Export Results
SDK Method
actionnotificationexportresult.List()
Return Object
[]*ActionNotificationExportResult
Authorization Requirement
Requires either a Site-Wide API key or User API key or session from a User with Folder Admin permissions.
ActionNotificationExportResultListParams Fields
| Field | Description |
|---|---|
| UserId int64 | User ID. Provide a value of 0 to operate the current session's user. |
| ActionNotificationExportId int64 Required | ID of the associated action notification export. |
Additional Arguments
The ActionNotificationExportResult Object
Some of the methods above return a ActionNotificationExportResult object. The attributes of this object are listed below.
| Attribute | Description |
|---|---|
| Id int64 | Notification ID |
| CreatedAt int64 | When the notification was sent. |
| Status int64 | HTTP status code returned in the webhook response. |
| Message string | A message indicating the overall status of the webhook notification. |
| Success boolean | true if the webhook succeeded by receiving a 200 or 204 response. |
| RequestHeaders string | A JSON-encoded string with headers that were sent with the webhook. |
| RequestMethod string | The HTTP verb used to perform the webhook. |
| RequestUrl string | The webhook request URL. |
| Path string | The path to the actual file that triggered this notification. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters. |
| Folder string | The folder associated with the triggering action for this notification. |