Connected Accounts
Account Management
Enable or disable a connected account
Updates the status of a connected account to either enabled (active) or disabled (inactive). Disabled accounts cannot be used for API calls but remain in the database.
patch/api/v3.1/connected_accounts/{nanoId}/status
Path parameters
nanoIdstring connectedAccountId required
The unique identifier of the connected account
Request body
Example request
{
"enabled": true
}Response
Successfully updated the connected account status. If enabled=true, the account status is set to ACTIVE; if enabled=false, the status is set to INACTIVE.
Example response
{
"success": true
}