accounts_audit
Creates, updates, deletes, gets or lists an accounts_audit resource.
Overview
| Name | accounts_audit |
| Type | Resource |
| Id | netlify.audit_log.accounts_audit |
Fields
The following fields are returned by SELECT queries:
- listAccountAuditEvents
| Name | Datatype | Description |
|---|---|---|
id | string | |
account_id | string | |
payload | object |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
listAccountAuditEvents | select | account_id |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
account_id | string |
SELECT examples
- listAccountAuditEvents
OK
SELECT
id,
account_id,
payload
FROM netlify.audit_log.accounts_audit
WHERE account_id = '{{ account_id }}' -- required
;