Accounts
Update an account
This API let’s you to update an account’s information using customer_id and account_id.
patch/accounts/{account_id}
Path parameters
account_idstring required
Example:ACC00001
account_id corresponding to an account
Request body
Example request
{
"name": "ACME Enterprise",
"invoiceCurrency": "USD",
"primaryEmail": "admin@example.com"
}Response
Response for Create and Get account requests
Example response
{
"invoiceCurrency": "USD",
"primaryEmail": "admin@example.com",
"status": "ACTIVE"
}