A
RetrieveAuditLogRequests
AirtableApi.RetrieveAuditLogRequests
Description
Retrieve all audit log requests for an enterprise account.
This tool retrieves all the audit log requests for a given enterprise account. It's meant for accessing historical log records. Note that using this API is discouraged for new use cases; consider using the audit log events API instead.
Input Parameters
{
"parameters": [
{
"name": "enterprise_account_id",
"required": true,
"inferrable": true,
"description": "The unique identifier for the enterprise account to retrieve audit log requests for.",
"value_schema": {
"val_type": "string"
}
},
{
"name": "audit_log_page_size",
"required": false,
"inferrable": true,
"description": "Specify the number of audit log requests to return per page. Use this to control pagination.",
"value_schema": {
"val_type": "number"
}
},
{
"name": "pagination_offset",
"required": false,
"inferrable": true,
"description": "A number indicating the starting point for retrieving audit log requests. Used for pagination.",
"value_schema": {
"val_type": "number"
}
}
]
} Output
{
"description": "Response from the API endpoint 'list-audit-log-requests'.",
"value_schema": {
"val_type": "json"
},
"available_modes": [
"value",
"error"
]
}