arcade-mcp/toolkits/airtable_api/arcade_airtable_api/wrapper_tools/RetrieveAuditLogEvents.json
jottakka 4d0ae0cdce
[MOAR][AIRTABLE] Adding AirTable starter tools (+49) (#615)
Co-authored-by: Francisco Liberal <francisco@arcade.dev>
2025-10-13 15:13:39 -03:00

442 lines
13 KiB
JSON

{
"name": "RetrieveAuditLogEvents",
"fully_qualified_name": "AirtableApi.RetrieveAuditLogEvents@0.1.0",
"description": "Retrieve audit log events for an enterprise.\n\nUse this tool to access audit log events for a specific enterprise. It retrieves all current stored data and continues to update with future events.",
"toolkit": {
"name": "ArcadeAirtableApi",
"description": null,
"version": "0.1.0"
},
"input": {
"parameters": [
{
"name": "enterprise_account_id",
"required": true,
"description": "The unique ID of the enterprise account for which audit log events are being retrieved. This should be a string.",
"value_schema": {
"val_type": "string",
"inner_val_type": null,
"enum": null,
"properties": null,
"inner_properties": null,
"description": ""
},
"inferrable": true,
"http_endpoint_parameter_name": "enterpriseAccountId"
},
{
"name": "start_time",
"required": false,
"description": "Specify the start time for retrieving audit log events. Use ISO 8601 format (e.g., '2023-01-01T00:00:00Z').",
"value_schema": {
"val_type": "string",
"inner_val_type": null,
"enum": null,
"properties": null,
"inner_properties": null,
"description": ""
},
"inferrable": true,
"http_endpoint_parameter_name": "startTime"
},
{
"name": "end_time",
"required": false,
"description": "The ISO 8601 formatted date and time to end retrieving audit log events. Leave empty to continue into the future.",
"value_schema": {
"val_type": "string",
"inner_val_type": null,
"enum": null,
"properties": null,
"inner_properties": null,
"description": ""
},
"inferrable": true,
"http_endpoint_parameter_name": "endTime"
},
{
"name": "originating_user_id",
"required": false,
"description": "The ID of the user who initiated the event. Used to filter events by their originating user.",
"value_schema": {
"val_type": "string",
"inner_val_type": null,
"enum": null,
"properties": null,
"inner_properties": null,
"description": ""
},
"inferrable": true,
"http_endpoint_parameter_name": "originatingUserId"
},
{
"name": "event_type",
"required": false,
"description": "Specify the type of event to filter audit logs (e.g., 'login', 'data_change').",
"value_schema": {
"val_type": "string",
"inner_val_type": null,
"enum": null,
"properties": null,
"inner_properties": null,
"description": ""
},
"inferrable": true,
"http_endpoint_parameter_name": "eventType"
},
{
"name": "model_id",
"required": false,
"description": "The ID of the model to filter audit log events. Use this to specify a particular model if needed.",
"value_schema": {
"val_type": "string",
"inner_val_type": null,
"enum": null,
"properties": null,
"inner_properties": null,
"description": ""
},
"inferrable": true,
"http_endpoint_parameter_name": "modelId"
},
{
"name": "page_size",
"required": false,
"description": "Number of audit log events to retrieve per page.",
"value_schema": {
"val_type": "number",
"inner_val_type": null,
"enum": null,
"properties": null,
"inner_properties": null,
"description": ""
},
"inferrable": true,
"http_endpoint_parameter_name": "pageSize"
},
{
"name": "sort_order",
"required": false,
"description": "Specify the order of the audit log results: 'ascending' or 'descending'.",
"value_schema": {
"val_type": "string",
"inner_val_type": null,
"enum": [
"descending",
"ascending"
],
"properties": null,
"inner_properties": null,
"description": ""
},
"inferrable": true,
"http_endpoint_parameter_name": "sortOrder"
},
{
"name": "previous_page_cursor",
"required": false,
"description": "A cursor string to navigate to the previous page of results in paginated data.",
"value_schema": {
"val_type": "string",
"inner_val_type": null,
"enum": null,
"properties": null,
"inner_properties": null,
"description": ""
},
"inferrable": true,
"http_endpoint_parameter_name": "previous"
},
{
"name": "next_page_token",
"required": false,
"description": "A token to retrieve the next page of results in pagination. Use the token from the previous response if available.",
"value_schema": {
"val_type": "string",
"inner_val_type": null,
"enum": null,
"properties": null,
"inner_properties": null,
"description": ""
},
"inferrable": true,
"http_endpoint_parameter_name": "next"
},
{
"name": "event_category",
"required": false,
"description": "Specifies the category of events to filter the audit log. Use to narrow down results to specific types of audit events.",
"value_schema": {
"val_type": "string",
"inner_val_type": null,
"enum": null,
"properties": null,
"inner_properties": null,
"description": ""
},
"inferrable": true,
"http_endpoint_parameter_name": "category"
}
]
},
"output": {
"description": "Response from the API endpoint 'audit-log-events'.",
"available_modes": [
"value",
"error",
"null"
],
"value_schema": {
"val_type": "json",
"inner_val_type": null,
"enum": null,
"properties": null,
"inner_properties": null,
"description": null
}
},
"requirements": {
"authorization": {
"provider_id": "arcade-airtable",
"provider_type": "oauth2",
"id": null,
"oauth2": {
"scopes": [
"enterprise.auditLogs:read"
]
}
},
"secrets": null,
"metadata": null
},
"deprecation_message": null,
"metadata": {
"object_type": "api_wrapper_tool",
"version": "1.0.0",
"description": "Tools that enable LLMs to interact directly with the airtable API."
},
"http_endpoint": {
"metadata": {
"object_type": "http_endpoint",
"version": "1.0.0",
"description": ""
},
"url": "https://api.airtable.com/v0/meta/enterpriseAccounts/{enterpriseAccountId}/auditLogEvents",
"http_method": "GET",
"headers": {},
"parameters": [
{
"name": "startTime",
"tool_parameter_name": "start_time",
"description": "",
"value_schema": {
"val_type": "string",
"inner_val_type": null,
"enum": null,
"properties": null,
"inner_properties": null,
"description": ""
},
"accepted_as": "query",
"required": false,
"deprecated": false,
"default": null,
"documentation_urls": []
},
{
"name": "endTime",
"tool_parameter_name": "end_time",
"description": "",
"value_schema": {
"val_type": "string",
"inner_val_type": null,
"enum": null,
"properties": null,
"inner_properties": null,
"description": ""
},
"accepted_as": "query",
"required": false,
"deprecated": false,
"default": null,
"documentation_urls": []
},
{
"name": "originatingUserId",
"tool_parameter_name": "originating_user_id",
"description": "",
"value_schema": {
"val_type": "string",
"inner_val_type": null,
"enum": null,
"properties": null,
"inner_properties": null,
"description": ""
},
"accepted_as": "query",
"required": false,
"deprecated": false,
"default": null,
"documentation_urls": []
},
{
"name": "eventType",
"tool_parameter_name": "event_type",
"description": "",
"value_schema": {
"val_type": "string",
"inner_val_type": null,
"enum": null,
"properties": null,
"inner_properties": null,
"description": ""
},
"accepted_as": "query",
"required": false,
"deprecated": false,
"default": null,
"documentation_urls": []
},
{
"name": "modelId",
"tool_parameter_name": "model_id",
"description": "",
"value_schema": {
"val_type": "string",
"inner_val_type": null,
"enum": null,
"properties": null,
"inner_properties": null,
"description": ""
},
"accepted_as": "query",
"required": false,
"deprecated": false,
"default": null,
"documentation_urls": []
},
{
"name": "pageSize",
"tool_parameter_name": "page_size",
"description": "",
"value_schema": {
"val_type": "number",
"inner_val_type": null,
"enum": null,
"properties": null,
"inner_properties": null,
"description": ""
},
"accepted_as": "query",
"required": false,
"deprecated": false,
"default": null,
"documentation_urls": []
},
{
"name": "sortOrder",
"tool_parameter_name": "sort_order",
"description": "",
"value_schema": {
"val_type": "string",
"inner_val_type": null,
"enum": [
"descending",
"ascending"
],
"properties": null,
"inner_properties": null,
"description": ""
},
"accepted_as": "query",
"required": false,
"deprecated": false,
"default": null,
"documentation_urls": []
},
{
"name": "previous",
"tool_parameter_name": "previous_page_cursor",
"description": "",
"value_schema": {
"val_type": "string",
"inner_val_type": null,
"enum": null,
"properties": null,
"inner_properties": null,
"description": ""
},
"accepted_as": "query",
"required": false,
"deprecated": false,
"default": null,
"documentation_urls": []
},
{
"name": "next",
"tool_parameter_name": "next_page_token",
"description": "",
"value_schema": {
"val_type": "string",
"inner_val_type": null,
"enum": null,
"properties": null,
"inner_properties": null,
"description": ""
},
"accepted_as": "query",
"required": false,
"deprecated": false,
"default": null,
"documentation_urls": []
},
{
"name": "category",
"tool_parameter_name": "event_category",
"description": "",
"value_schema": {
"val_type": "string",
"inner_val_type": null,
"enum": null,
"properties": null,
"inner_properties": null,
"description": ""
},
"accepted_as": "query",
"required": false,
"deprecated": false,
"default": null,
"documentation_urls": []
},
{
"name": "enterpriseAccountId",
"tool_parameter_name": "enterprise_account_id",
"description": "",
"value_schema": {
"val_type": "string",
"inner_val_type": null,
"enum": null,
"properties": null,
"inner_properties": null,
"description": ""
},
"accepted_as": "path",
"required": true,
"deprecated": false,
"default": null,
"documentation_urls": []
}
],
"documentation_urls": [],
"secrets": [
{
"arcade_key": "auth_token",
"parameter_name": "Authorization",
"accepted_as": "header",
"formatted_value": "Bearer {authorization}",
"description": "The OAuth token to use for authentication.",
"is_auth_token": true
}
]
}
}