List Webhook Logs

get

/system/api/v1/webhooks/{id}/logs

Get all Webhook Logs . This will list all successful and failed calls to Webhook end point. The list can be filtered using query parameter. ## Filters The following properties are filterable and can be used in the `q` parameter:
Property NameSupported Operators
eventidEquals (eq)
statusEquals (eq) . Supported values are pass, fail
invokedAtGreater than or equal to(ge) and Less than or equal to(le)

Example q=status eq pass ## Sorting The orderBy parameter is used to control the order (ascending/descending) of queried items.This parameter is optional in the query and by default there is no order of results. This parameter accepts a field name separated by a colon (:) ,for which the user wants to sort the results.
Property NameDescription
invokedAtDate and time at which the webhook was invoked. The supported date formats are - ISO 8601 Date-Time format (Eg: 2022-10-15T06:24:24.713Z) or ISO 8601 Date format (Eg: 2022-10-15)

Format orderBy={PropertyName}:{asc:desc}
Example invokedAt=name:desc

Request

Path Parameters
Query Parameters
  • A positive integer value specifies the maximum number of items returned in the response.
    Default Value: 100
  • Non-negative integer values that specifies the index of the first item to be returned. The offset index begins at `0`. The default offset is `0`, which returns all items starting from the first item in the collection.
    Default Value: 0
  • Comma-separated string of field names, each optionally followed by `:asc` or `:desc`, that specifies the order of items returned in the response.
  • Filtering of the resources.
Back to Top

Response

Supported Media Types

200 Response

OK
Body ()
Root Schema : Webhook logs Collection
Type: object
Webhook logs collection
Show Source
  • Total number of resources in the response.
    Example: 10
  • Collection has more elements that match the request. Indicates whether there are more items to be returned when a paged request is made and the page was not big enough to return all elements.
    Example: true
  • items
    Singular resources contained in the collection.
  • Actual response size limit used. If the request specifies too large a limit, or does not specify a limit then the response will specify the limit used.
    Example: 10
  • links
  • Actual response offset used. If the request specifies no offset then the actual offset is provided in the response.
    Example: 0
  • Total number of resources that match the request. If provided, this is the total number of available items. If not specified the total is not known, or is not viable to return. Paging limits or offsets are ignored when calculating this value. Only returned if the `totalResults` parameter is supported and is set to `true` by the client.
    Example: 10
Nested Schema : items
Type: array
Singular resources contained in the collection.
Show Source
Nested Schema : Webhook logs
Type: object
Webhook end point log data
Show Source

304 Response

Not Modified
Body ()
Root Schema : ExceptionDetail
Type: object
Error details for a REST request. In addition to HTTP error code and error messages, it is often desirable to provide additional information to the client when a request fails. In such these cases, the additional information must be included in the error response body. The additional information is optional, but if provided, it will be in the form of exception detail.
Show Source
Nested Schema : o:errorDetails
Type: array
Multiple errors can be organized in a hierarchical structure.
Show Source
  • ExceptionDetail
    Error details for a REST request. In addition to HTTP error code and error messages, it is often desirable to provide additional information to the client when a request fails. In such these cases, the additional information must be included in the error response body. The additional information is optional, but if provided, it will be in the form of exception detail.

400 Response

Bad Request
Body ()
Root Schema : ExceptionDetail
Type: object
Error details for a REST request. In addition to HTTP error code and error messages, it is often desirable to provide additional information to the client when a request fails. In such these cases, the additional information must be included in the error response body. The additional information is optional, but if provided, it will be in the form of exception detail.
Show Source
Nested Schema : o:errorDetails
Type: array
Multiple errors can be organized in a hierarchical structure.
Show Source
  • ExceptionDetail
    Error details for a REST request. In addition to HTTP error code and error messages, it is often desirable to provide additional information to the client when a request fails. In such these cases, the additional information must be included in the error response body. The additional information is optional, but if provided, it will be in the form of exception detail.

404 Response

Not Found
Body ()
Root Schema : ExceptionDetail
Type: object
Error details for a REST request. In addition to HTTP error code and error messages, it is often desirable to provide additional information to the client when a request fails. In such these cases, the additional information must be included in the error response body. The additional information is optional, but if provided, it will be in the form of exception detail.
Show Source
Nested Schema : o:errorDetails
Type: array
Multiple errors can be organized in a hierarchical structure.
Show Source
  • ExceptionDetail
    Error details for a REST request. In addition to HTTP error code and error messages, it is often desirable to provide additional information to the client when a request fails. In such these cases, the additional information must be included in the error response body. The additional information is optional, but if provided, it will be in the form of exception detail.

500 Response

Internal Server Error
Body ()
Root Schema : ExceptionDetail
Type: object
Error details for a REST request. In addition to HTTP error code and error messages, it is often desirable to provide additional information to the client when a request fails. In such these cases, the additional information must be included in the error response body. The additional information is optional, but if provided, it will be in the form of exception detail.
Show Source
Nested Schema : o:errorDetails
Type: array
Multiple errors can be organized in a hierarchical structure.
Show Source
  • ExceptionDetail
    Error details for a REST request. In addition to HTTP error code and error messages, it is often desirable to provide additional information to the client when a request fails. In such these cases, the additional information must be included in the error response body. The additional information is optional, but if provided, it will be in the form of exception detail.
Back to Top