Audit endpoint
Use this endpoint to retrieve audit records for a specified time window.
Provide RC3339 timestamps in the from and to query parameters to filter by date and time.
Use this API in the following steps to retrieve the complete set of records:
- On the first request, call the endpoint with the
fromandtoparameters. - Receive a
tokenheader in the response of the first call. - To page through all records in the range, keep calling the endpoint with the last
tokenvalue and thetoparameter used in the initial call until the response body is an empty array, which means there are no more records in that range.
Note: This page covers the essentials. For full parameters, examples, and response schema, see Get Audit Records (API Reference).
Request
- Authorization:
Bearer <access_token>(For more details, see Authentication and Create Access Token). - Method:
GET - URL:
https://audit.{instance}.sectigo.com/api/v1/records(For more details, see Base URL). - Query parameters:
from:- Required if
tokenis not provided. - Timestamps value to start getting records after.
- Use RFC 3339 format, i.e. 2025-08-18T15:04:00Z.
- Required if
to:- Required.
- Timestamps value to get records up to.
- Use RFC 3339 format, i.e. 2025-08-18T15:04:00Z.
token:- Optional.
- Pagination cursor from the previous response’s
tokenheader. - An string value used to mark which record to start from instead of using
fromparameter. - Should be used in all subsequent calls after the initial request made with the from and to parameters.
Response
- Headers:
- Content-type:
application/json - token: A token value that can be provided in the token parameter of the next call.
- Content-type:
- Body:
- On success, returns an array of audit records.
- On failure, returns an object includes error message.
- For full list of response parameters, see Get Audit Records (API Reference).
Updated about 2 hours ago