suspend_or_unsuspend_seat
Manage team member access by suspending or unsuspending seats. Control user permissions by temporarily disabling or re-enabling their account access within the team.
Instructions
Suspend or Unsuspend Seat
This action suspends or unsuspends a specific seat within a specific team.
Args: user_id: User ID who owns the seat account_id: Account/Seat ID to suspend/unsuspend suspended: True to suspend, False to unsuspend
Returns: Updated seat status
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| user_id | Yes | ||
| account_id | Yes | ||
| suspended | Yes |
Input Schema (JSON Schema)
{
"properties": {
"account_id": {
"type": "integer"
},
"suspended": {
"type": "boolean"
},
"user_id": {
"type": "string"
}
},
"required": [
"user_id",
"account_id",
"suspended"
],
"type": "object"
}