Make stores a log of every webhook execution. Make stores webhook logs for 3 days. The webhook logs for organizations with the Enterprise plan are stored for 30 days. Read more about webhook logs.
The following endpoints allow you to retrieve webhook logs.
Retrieves a list of the specified webhook execution logs. Use the to
and from
parameters to filter the returned logs. The response contains:
statusId
: the status of the webhook execution; 1
means successful execution, 3
means failed execution
loggedAt
: the moment when Make created the log
id
: the ID of the webhook execution log
The ID of the webhook. Use the GET /hooks
API call to get the ID values of your webhooks.
654
Limits data in the response to entries older than the specified timestamp. Use the UNIX timestamp format in milliseconds.
1663495749015
Limits data in the response to entries newer than the specified timestamp. Use the UNIX timestamp format in milliseconds.
1663495749015
The value that will be used to sort returned entities by.
The value of entities you want to skip before getting entities you need.
The sorting order. It accepts the ascending and descending direction specifiers.
Sets the maximum number of results per page in the API call response. For example, pg[limit]=100
. The default number varies with different API endpoints.
Retrieves the specified webhook execution log. The response contains:
statusId
: the status of the webhook execution; 1
means successful execution, 3
means failed execution
loggedAt
: the moment when Make created the log
id
: the ID of the webhook execution log
data
: information about the request, header, and payload sent to the webhook.
Some webhooks don't return the data
object due to their implementation. Most common examples include instant triggers for Slack, Zoom, Intercom and Facebook lead ads apps.
The ID of the webhook. Use the GET /hooks
API call to get the ID values of your webhooks.
654
The ID of the webhook execution log. Use the GET /hooks/{hookId}/logs
API call to get the ID values of your webhook execution logs.
95b1c20c790ff5f9d2f1e805943ce95d
The value that will be used to sort returned entities by.
The value of entities you want to skip before getting entities you need.
The sorting order. It accepts the ascending and descending direction specifiers.
Sets the maximum number of results per page in the API call response. For example, pg[limit]=100
. The default number varies with different API endpoints.