cancel_seat
Cancel a team member's seat by providing user ID, account ID, and cancellation reason to remove access from the Multilead platform.
Instructions
Cancel Seat
This action cancels a specific seat within a specific team.
Args: user_id: User ID who owns the seat account_id: Account/Seat ID to cancel reason: Reason for cancellation
Returns: Cancellation confirmation with details
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| user_id | Yes | ||
| account_id | Yes | ||
| reason | Yes |
Input Schema (JSON Schema)
{
"properties": {
"account_id": {
"type": "string"
},
"reason": {
"type": "string"
},
"user_id": {
"type": "string"
}
},
"required": [
"user_id",
"account_id",
"reason"
],
"type": "object"
}