Skip to main content

Disables a managed account

POST 
/managed_accounts/:id/actions/disable

Disables a managed account, forbidding it to use Telnyx services, including sending or receiving phone calls and SMS messages. Ongoing phone calls will not be affected. The managed account and its sub-users will no longer be able to log in via the mission control portal.

Request

Path Parameters

    id stringrequired

    Managed Account User ID

Responses

200: Successful response with information about a single managed account.

401: Unauthenticated response. Happens when the current user cannot be authenticated.

404: Resource not found

422: Unprocessable entity. Check the 'detail' field in response for details.

Request samples


curl -L -X POST 'https://api.telnyx.com/v2/managed_accounts/:id/actions/disable' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'

Response samples


{
"data": {
"record_type": "managed_account",
"id": "f65ceda4-6522-4ad6-aede-98de83385123",
"email": "[email protected]",
"api_key": "KEY01236170692E74656C6E79782E636F6D_YmlnIGlyb24gaXMgZGVhZA",
"api_user": "[email protected]",
"api_token": "x6oexQNHTs-fZ7-QsDMOeg",
"organization_name": "Example Company LLC",
"manager_account_id": "f65ceda4-6522-4ad6-aede-98de83385123",
"balance": {
"record_type": "balance",
"balance": "300.00",
"credit_limit": "100.00",
"available_credit": "400.00",
"currency": "USD"
},
"created_at": "2018-02-02T22:25:27.521Z",
"updated_at": "2018-02-02T22:25:27.521Z",
"managed_account_allow_custom_pricing": true,
"rollup_billing": false
}
}