action vercel_delete_team { label: "Delete a Team" description: "Delete a team under your account. You need to send a `DELETE` request with the desired team `id`. An optional array of reasons for deletion may also be sent." provider: vercel method: DELETE path: "/v1/teams/{teamId}" encoding: json input: { type: "object" properties: { reasons: { type: "array" description: "Optional array of objects that describe the reason why the team is being deleted." items: { type: "object" description: "An object describing the reason why the team is being deleted." required: ["slug", "description"] properties: { description: { type: "string" description: "Description of the reason why the team is being deleted." } slug: { type: "string" description: "Idenitifier slug of the reason why the team is being deleted." } } additionalProperties: false } } teamId: { type: "string" } } required: ["teamId"] additionalProperties: false } output: { type: "object" description: "The Team was successfuly deleted" required: ["id"] properties: { id: { type: "string" description: "The ID of the deleted Team" } } } }