reactivate_seat
Reactivate inactive team seats by providing user ID and account ID to restore access to lead management and email campaign tools.
Instructions
Reactivate Seat
This action reactivates a specific inactive seat within a specific team.
Args: user_id: User ID who owns the seat account_id: Account/Seat ID to reactivate proxy_country: Optional proxy country code (e.g., "us", "gb")
Returns: Reactivation confirmation with updated seat status
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| user_id | Yes | ||
| account_id | Yes | ||
| proxy_country | No |
Input Schema (JSON Schema)
{
"properties": {
"account_id": {
"type": "string"
},
"proxy_country": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
},
"user_id": {
"type": "string"
}
},
"required": [
"user_id",
"account_id"
],
"type": "object"
}