v1
latestOpenAPI 3.1.02026-07-228956435.8 KBAccount numbers
Update an account number
Updates the editable fields of an account number of your organization: description, status, metadata, and inbound options.
patch/account_numbers/{id}
Path parameters
idstring required
Unique identifier of the account number to update.
Request body
Example request
{
"description": "Updated description",
"status": "disabled",
"metadata": {
"invoice_id": "12345"
},
"options": {
"min_amount": 1000,
"max_amount": 1000000
}
}Response
The updated account number.
Example response
{
"id": "acno_2daFu0zqqDtZGJaSi2TGI2Mm1nN",
"account_id": "acc_2hQ9vBmKpR7xLtZ3sWn1fJ4dGcA",
"created_at": "2026-03-01T12:00:00.000Z",
"description": "Payouts CLABE",
"metadata": {
"invoice_id": "12345"
},
"mode": "test",
"number": "646180111800000000",
"options": {
"min_amount": 1000,
"max_amount": 1000000
},
"status": "enabled",
"updated_at": "2026-03-01T12:00:00.000Z"
}