arcade-mcp/toolkits/airtable_api/arcade_airtable_api/wrapper_tools/LogoutEnterpriseUser.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

172 lines
4.8 KiB
JSON

{
"name": "LogoutEnterpriseUser",
"fully_qualified_name": "AirtableApi.LogoutEnterpriseUser@0.1.0",
"description": "Log out an enterprise account user.\n\nThis tool logs out a user from an enterprise account, specifically for ELA and FLA enterprise accounts or managed claiming users. It should be used when there's a need to terminate an active session for such users.",
"toolkit": {
"name": "ArcadeAirtableApi",
"description": null,
"version": "0.1.0"
},
"input": {
"parameters": [
{
"name": "enterprise_account_id",
"required": true,
"description": "The unique identifier for the enterprise account. Required for logging out the user.",
"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": "user_id",
"required": true,
"description": "The unique identifier for the user to be logged out. This value is required to terminate their session.",
"value_schema": {
"val_type": "string",
"inner_val_type": null,
"enum": null,
"properties": null,
"inner_properties": null,
"description": ""
},
"inferrable": true,
"http_endpoint_parameter_name": "userId"
},
{
"name": "logout_request_body",
"required": false,
"description": "JSON object containing the logout details for the user session.",
"value_schema": {
"val_type": "json",
"inner_val_type": null,
"enum": null,
"properties": null,
"inner_properties": null,
"description": ""
},
"inferrable": true,
"http_endpoint_parameter_name": "requestBody"
}
]
},
"output": {
"description": "Response from the API endpoint 'logout-user'.",
"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.user:write"
]
}
},
"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}/users/{userId}/logout",
"http_method": "POST",
"headers": {},
"parameters": [
{
"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": []
},
{
"name": "userId",
"tool_parameter_name": "user_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": []
},
{
"name": "requestBody",
"tool_parameter_name": "logout_request_body",
"description": "",
"value_schema": {
"val_type": "json",
"inner_val_type": null,
"enum": null,
"properties": null,
"inner_properties": null,
"description": ""
},
"accepted_as": "body",
"required": false,
"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
}
]
}
}