freeze_account
Temporarily suspend trading activity for a specific account to prevent unauthorized transactions or manage account access securely. Requires the account ID as input.
Instructions
Freeze a trading account
Input Schema
Name | Required | Description | Default |
---|---|---|---|
accountId | Yes | Account ID to freeze |
Input Schema (JSON Schema)
{
"properties": {
"accountId": {
"description": "Account ID to freeze",
"type": "string"
}
},
"required": [
"accountId"
],
"type": "object"
}