Was this article helpful?
Thanks for your feedback
The Get executions of a webhook API request now allows you to filter the webhook execution details based on a particular date range. To do so, you can pass from
and to
as query parameters within the API request. For both of these parameters, you need to provide a date in ISO format as the value. For instance, to set the start date in the from
parameter to December 8, 2017, you can pass the date in ISO format as shown below:
from="2017-12-08T00:00:00.000Z"
Audit Log tracks and displays activities (events) performed in a particular stack. Initially, the API response body only contained information about the operations being performed. With multiple API requests being executed throughout the stack by various users, mapping each request was a tedious task.
After this release, you will be able to view a request_id
key in the response body of the GET Audit Log and GET Audit Log Item requests. This key helps map the API requests made throughout a stack with the Audit Log.
The response schema would look as follows:
{ "logs":[ { "uid":"blt6f02145fb8599a9757be", "stack":"blt323b040550e614e3", "created_at":"2021-08-16T05:51:10.378Z", "created_by":"blt151bca2f320b01be", "module":"content_type", "event_type":"update", "request_id":"21028215907fbfe454c88df49ee5352a", "metadata":{ "title":"Audit-log Test", "uid":"audit_log_test", "version":2, "scope":null } } ] }
Was this article helpful?
Thanks for your feedback