action asana_get_audit_log_events { label: "Get audit log events" description: "Retrieve the audit log events that have been captured in your domain.\n\nThis endpoint will return a list of [AuditLogEvent](/docs/audit-log-event) objects, sorted by creation time in ascending order. Note that the Audit Log API captures events from October 8th, 2021 and later. Queries for events before this date will not return results.\n\nThere are a number of query parameters (below) that can be used to filter the set of [AuditLogEvent](/docs/audit-log-event) objects that are returned in the response. Any combination of query parameters is valid. When no filters are provided, all of the events that have been captured in your domain will match.\n\nThe list of events will always be [paginated](/docs/pagination). The default limit is 1000 events. The next set of events can be retrieved using the `offset` from the previous response. If there are no events that match the provided filters in your domain, the endpoint will return `null` for the `next_page` field. Querying again with the same filters may return new events if they were captured after the last request. Once a response includes a `next_page` with an `offset`, subsequent requests can be made with the latest `offset` to poll for new events that match the provided filters.\n\nWhen no `offset` is provided, the response will begin with the oldest events that match the provided filters. It is important to note that [AuditLogEvent](/docs/audit-log-event) objects will be permanently deleted from our systems after 90 days. If you wish to keep a permanent record of these events, we recommend using a SIEM tool to ingest and store these logs." provider: asana method: GET path: "/workspaces/{workspace_gid}/audit_log_events" encoding: json output: { type: "object" properties: { data: { type: "array" items: { type: "object" description: "An object representing a single event within an Asana domain.\n\nEvery audit log event is comprised of an `event_type`, `actor`, `resource`, and `context`. Some events will include additional metadata about the event under `details`. See our [currently supported list of events](/docs/supported-auditlogevents) for more details." properties: { actor: { type: "object" } context: { type: "object" } created_at: { type: "string" format: "date-time" description: "The time the event was created." } details: { type: "object" } event_category: { type: "string" description: "The category that this `event_type` belongs to." } event_type: { type: "string" description: "The type of the event." } gid: { type: "string" description: "Globally unique identifier of the `AuditLogEvent`, as a string." } resource: { type: "object" } } } } } } }