Skip to main content

accounts_audit

Creates, updates, deletes, gets or lists an accounts_audit resource.

Overview

Nameaccounts_audit
TypeResource
Idnetlify.audit_log.accounts_audit

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstring
account_idstring
payloadobject

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listAccountAuditEventsselectaccount_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.

NameDatatypeDescription
account_idstring

SELECT examples

OK

SELECT
id,
account_id,
payload
FROM netlify.audit_log.accounts_audit
WHERE account_id = '{{ account_id }}' -- required
;