# Account - Update

| **API URL**     | {{url}}/admin-service/account/update |
| --------------- | ------------------------------------ |
| **Method**      | PUT                                  |
| **Description** | Account update                       |

#### **Input** <a href="#account-update-input" id="account-update-input"></a>

| **Field Name**     | **Type** | **Mandatory** | **Example**                     |
| ------------------ | -------- | ------------- | ------------------------------- |
| id                 | Number   | Yes           | 11                              |
| name               | String   | Yes           | Africa Heart Associates Account |
| countryId          | Number   | Yes           | 4                               |
| clinicalWorkflow   | Number   | Yes           | 1                               |
| customizedWorkflow | Number   | Yes           | 11                              |

#### **Sample Input:** <a href="#account-update-sampleinput" id="account-update-sampleinput"></a>

{\
"id":11,\
"name": "Africa Heart Associates Account",\
"countryId": 4,\
"clinicalWorkflow": \[\
1\
],\
"customizedWorkflow": \[\
11\
],\
"tenantId":211\
}

#### **Sample Output:** <a href="#account-update-sampleoutput" id="account-update-sampleoutput"></a>

```
{
    "message": "Account updated successfully."
}
```
