{ "name": "DeleteTeam", "fully_qualified_name": "VercelApi.DeleteTeam@0.1.0", "description": "Delete a team from your Vercel account.\n\nUse this tool to send a request to delete a specific team under your Vercel account by providing the team ID. Optional reasons for deletion can be included.", "toolkit": { "name": "ArcadeVercelApi", "description": null, "version": "0.1.0" }, "input": { "parameters": [ { "name": "team_identifier", "required": true, "description": "The unique identifier of the team to be deleted in your Vercel account.", "value_schema": { "val_type": "string", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "The Team identifier to perform the request on behalf of." }, "inferrable": true, "http_endpoint_parameter_name": "teamId" }, { "name": "deletion_reasons", "required": true, "description": "Optional array of objects detailing reasons for team deletion, each with a 'slug' and 'description'.", "value_schema": { "val_type": "json", "inner_val_type": null, "enum": null, "properties": { "reasons": { "val_type": "array", "inner_val_type": "json", "enum": null, "properties": null, "inner_properties": { "slug": { "val_type": "string", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "Idenitifier slug of the reason why the team is being deleted." }, "description": { "val_type": "string", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "Description of the reason why the team is being deleted." } }, "description": "Optional array of objects that describe the reason why the team is being deleted." } }, "inner_properties": null, "description": "" }, "inferrable": true, "http_endpoint_parameter_name": "requestBody" }, { "name": "new_default_team_id", "required": false, "description": "Specify the team ID to set as the new default after deletion.", "value_schema": { "val_type": "string", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "Id of the team to be set as the new default team" }, "inferrable": true, "http_endpoint_parameter_name": "newDefaultTeamId" }, { "name": "team_slug", "required": false, "description": "The slug of the team you want to delete. Used to identify the team for the delete operation.", "value_schema": { "val_type": "string", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "The Team slug to perform the request on behalf of." }, "inferrable": true, "http_endpoint_parameter_name": "slug" } ] }, "output": { "description": "Response from the API endpoint 'deleteTeam'.", "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": null, "secrets": [ { "key": "VERCEL_ACCESS_TOKEN" } ], "metadata": null }, "deprecation_message": null, "metadata": { "object_type": "api_wrapper_tool", "version": "1.1.0", "description": "Tools that enable LLMs to interact directly with the vercel API." }, "http_endpoint": { "metadata": { "object_type": "http_endpoint", "version": "1.2.0", "description": "" }, "url": "https://api.vercel.com/v1/teams/{teamId}", "http_method": "DELETE", "headers": { "Content-Type": "application/json" }, "parameters": [ { "name": "newDefaultTeamId", "tool_parameter_name": "new_default_team_id", "description": "Id of the team to be set as the new default team", "value_schema": { "val_type": "string", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "Id of the team to be set as the new default team" }, "accepted_as": "query", "required": false, "deprecated": false, "default": null, "documentation_urls": [] }, { "name": "slug", "tool_parameter_name": "team_slug", "description": "The Team slug to perform the request on behalf of.", "value_schema": { "val_type": "string", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "The Team slug to perform the request on behalf of." }, "accepted_as": "query", "required": false, "deprecated": false, "default": null, "documentation_urls": [] }, { "name": "teamId", "tool_parameter_name": "team_identifier", "description": "The Team identifier to perform the request on behalf of.", "value_schema": { "val_type": "string", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "The Team identifier to perform the request on behalf of." }, "accepted_as": "path", "required": true, "deprecated": false, "default": null, "documentation_urls": [] }, { "name": "requestBody", "tool_parameter_name": "deletion_reasons", "description": "", "value_schema": { "val_type": "json", "inner_val_type": null, "enum": null, "properties": { "reasons": { "val_type": "array", "inner_val_type": "json", "enum": null, "properties": null, "inner_properties": { "slug": { "val_type": "string", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "Idenitifier slug of the reason why the team is being deleted." }, "description": { "val_type": "string", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "Description of the reason why the team is being deleted." } }, "description": "Optional array of objects that describe the reason why the team is being deleted." } }, "inner_properties": null, "description": "" }, "accepted_as": "body", "required": true, "deprecated": false, "default": null, "documentation_urls": [] } ], "documentation_urls": [], "secrets": [ { "arcade_key": "VERCEL_ACCESS_TOKEN", "parameter_name": "Authorization", "accepted_as": "header", "formatted_value": "Bearer {authorization}", "description": "", "is_auth_token": false } ], "request_body_spec": "{\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"type\": \"object\",\n \"additionalProperties\": false,\n \"properties\": {\n \"reasons\": {\n \"type\": \"array\",\n \"description\": \"Optional array of objects that describe the reason why the team is being deleted.\",\n \"items\": {\n \"type\": \"object\",\n \"description\": \"An object describing the reason why the team is being deleted.\",\n \"required\": [\n \"slug\",\n \"description\"\n ],\n \"additionalProperties\": false,\n \"properties\": {\n \"slug\": {\n \"type\": \"string\",\n \"description\": \"Idenitifier slug of the reason why the team is being deleted.\"\n },\n \"description\": {\n \"type\": \"string\",\n \"description\": \"Description of the reason why the team is being deleted.\"\n }\n }\n }\n }\n }\n }\n }\n },\n \"required\": true\n}", "use_request_body_schema_mode": true, "validate_request_body_schema": true } }