arcade-mcp/toolkits/slack_api/arcade_slack_api/wrapper_tools/DenySharedInviteRequest.json
2025-09-23 13:48:21 -03:00

141 lines
4.1 KiB
JSON

{
"name": "DenySharedInviteRequest",
"fully_qualified_name": "SlackApi.DenySharedInviteRequest@0.1.0",
"description": "Denies an external user invitation to a Slack channel.\n\nUse this tool to deny a request that invites an external user to join a Slack channel. It should be called when such an invite needs to be rejected.",
"toolkit": {
"name": "ArcadeSlackApi",
"description": null,
"version": "0.1.0"
},
"input": {
"parameters": [
{
"name": "shared_channel_invite_id",
"required": true,
"description": "The ID for the shared channel invite request that you intend to deny. This is required for specifying which invite to decline.",
"value_schema": {
"val_type": "string",
"inner_val_type": null,
"enum": null,
"properties": null,
"inner_properties": null,
"description": null
},
"inferrable": true,
"http_endpoint_parameter_name": "invite_id"
},
{
"name": "deny_invite_message",
"required": false,
"description": "An optional message explaining why the invitation was denied. This message will be sent to the requester.",
"value_schema": {
"val_type": "string",
"inner_val_type": null,
"enum": null,
"properties": null,
"inner_properties": null,
"description": null
},
"inferrable": true,
"http_endpoint_parameter_name": "message"
}
]
},
"output": {
"description": "Response from the API endpoint 'conversations.requestSharedInvite.deny'.",
"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-slack",
"provider_type": "oauth2",
"id": null,
"oauth2": {
"scopes": [
"conversations.connect:manage"
]
}
},
"secrets": null,
"metadata": null
},
"deprecation_message": null,
"metadata": {
"object_type": "api_wrapper_tool",
"version": "1.0.0",
"description": "Arcade Wrapper Tools enabling LLMs to interact with low-level Slack API endpoints."
},
"http_endpoint": {
"metadata": {
"object_type": "http_endpoint",
"version": "1.0.0",
"description": ""
},
"url": "https://slack.com/api/conversations.requestSharedInvite.deny",
"http_method": "POST",
"headers": {
"Content-Type": "application/x-www-form-urlencoded"
},
"parameters": [
{
"name": "invite_id",
"tool_parameter_name": "shared_channel_invite_id",
"description": "ID of the requested shared channel invite to deny.",
"value_schema": {
"val_type": "string",
"inner_val_type": null,
"enum": null,
"properties": null,
"inner_properties": null,
"description": null
},
"accepted_as": "body",
"required": true,
"deprecated": false,
"documentation_urls": []
},
{
"name": "message",
"tool_parameter_name": "deny_invite_message",
"description": "Optional message explaining why the request to invite was denied.",
"value_schema": {
"val_type": "string",
"inner_val_type": null,
"enum": null,
"properties": null,
"inner_properties": null,
"description": null
},
"accepted_as": "body",
"required": false,
"deprecated": false,
"documentation_urls": []
}
],
"documentation_urls": [
"https://docs.slack.dev/reference/methods/conversations.requestsharedinvite.deny"
],
"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
}
]
}
}