v1

latestOpenAPI 3.1.02026-07-2432337285.3 KB
Accounts

Update Account

Partially update an existing account.

Only the fields provided in the request body will be modified; all other fields will remain unchanged.

patch/{account_id}/

Path parameters

account_idstring required

Headers

x-company-idinteger

ID of a child company for authentication. If not provided, the parent company will be authenticated.

ID of a child company for authentication. If not provided, the parent company will be authenticated.

Request body

labelstring

Label of the account

productsAccountProductsEnum[]

List of products associated with the account. Requires the product to be already enabled for the company. Valid values: PAYOUTS, PAYINS, INTERNAL_TRANSFER

webhook_urlstring

URL for movement notifications (will follow the same schema as the Get Movement endpoint)

enabledboolean

Indicates if the account is enabled or not. Disabled accounts will not be able to perform any operations until they are enabled again.

Example request

{
  "products": [
    "PAYOUTS",
    "PAYINS",
    "INTERNAL_TRANSFER"
  ]
}

Response

Successful Response

status'success'