Web API

Press shift + S to search API reference.

Endpoint

List audit log requests

gethttps://api.airtable.com/v0/meta/enterpriseAccounts/{enterpriseAccountId}/auditLogs

NOTE: Use of this API is discouraged for new use cases. Prefer to use the audit log events API instead.

Retrieve all audit log requests.

Requirements

AuthenticationPersonal access token, OAuth integration
Scopeenterprise.auditLogs:read
User role

Enterprise admin

Billing plansAll plans

Path parameters

enterpriseAccountId
string

Query parameters

pageSize
optional<number>

The number of records per page. Maximum value of 100; defaults to 10.

offset
optional<number>

If there may be more to retrieve, an offset is returned. Pass the offset to the next call to retrieve the next page. Do not pass offset when retrieving the first page.

Response format

offset
optional<number>
auditLogs
array of Audit logs
Request (example)
Copy
$
curl "https://api.airtable.com/v0/meta/enterpriseAccounts/{enterpriseAccountId}/auditLogs" \
-H "Authorization: Bearer YOUR_TOKEN"
200 – Response (example)
{
"auditLogs": [
{
"createdByUserId": "usrL2PNC5o3H4lBEi",
"createdTime": "2021-01-01T00:00:00.000Z",
"filter": "appLkNDICXNqxSDhG",
"id": "ealLvFqm3oJNxg30m",
"state": "pending",
"timePeriod": "2021-01"
}
],
"offset": 10
}