GET /accounts/{account_id}/logs/audit/{id}/history

Returns the chronological change history for the resource identified by the given audit log entry.

The endpoint first locates the source audit log entry by id (using action_time to narrow the lookup window), derives identifying filters from that entry, and then returns matching audit logs within the since/before window.

The result_info.history_status field indicates the quality of the resource identification used:

Servers

Path parameters

Name Type Required Description
id String Yes
account_id String Yes

Query parameters

Name Type Required Description
limit Number No

Default value: 100

direction String No

Valid values:

  • "desc"
  • "asc"

Default value: "desc"

since String Yes

Limits the returned results to logs newer than the specified date. This can be a date string 2019-04-30 (interpreted in UTC) or an absolute timestamp that conforms to RFC3339.

action_time String Yes

RFC3339 timestamp of the source audit log entry's action time. Used to narrow the source-entry lookup window. Provide the action.time value from the audit log identified by id.

cursor String No
before String Yes

Limits the returned results to logs older than the specified date. This can be a date string 2019-04-30 (interpreted in UTC) or an absolute timestamp that conforms to RFC3339.

How to start integrating

  1. Add HTTP Task to your workflow definition.
  2. Search for the API you want to integrate with and click on the name.
    • This loads the API reference documentation and prepares the Http request settings.
  3. Click Test request to test run your request to the API and see the API's response.