updateAccount
PATCH /api/account/updateAccount/{countryId}
Updates the data of an existing account. Only the fields to be modified are sent.
| Field | Type | Req. | Description |
|---|---|---|---|
countryId (path) | string | Required | ISO country code |
taxId | string | Required | Company TaxId |
name | string | Optional | New company name |
description | string | Optional | New description |
address | string | Optional | New address |
city | string | Optional | New city |
province | string | Optional | New province |
phone | string | Optional | New phone number |
updateAccount
{
"taxId": "{{taxId}}",
"name": "Nombre Empresa Actualizado",
"description": "Descripción actualizada",
"address": "Nueva dirección",
"city": "Ciudad",
"province": "Provincia",
"phone": "+56900000000"
}