# Treatment Plan Update

| **API URL**     | {{url}}/spice-service/patient-treatment-plan/update |
| --------------- | --------------------------------------------------- |
| **Method**      | PUT                                                 |
| **Description** | Treatment Plan updation                             |

#### **Input:** <a href="#treatmentplanupdate-input" id="treatmentplanupdate-input"></a>

| **Field Name**        | **Type** | **Mandatory** | **Example**                                                                                                                                     |
| --------------------- | -------- | ------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- |
| Authorization(Header) | String   | Yes           | Bearer eyJlbmMiOiJBMTI4R0NNIiwiYWxnIjoiUlNBLU9BRVAtMjU2In0.MCm0mJDfpfjlr10Uok79-kTF7fv9Tn7cI5m2WsRDGUd9VS7iRmfbszjuc1-w5D-PYt9CdVxRMGBQlzYauhnI |

#### **Input:** <a href="#treatmentplanupdate-input-.1" id="treatmentplanupdate-input-.1"></a>

| **Field Name**         | **Type** | **Mandatory** | **Example**         |
| ---------------------- | -------- | ------------- | ------------------- |
| medicalReviewFrequency | String   | No            | Every Alternate Day |
| hba1cCheckFrequency    | String   | No            | Every 2 weeks       |
| bpCheckFrequency       | String   | No            | Every Alternate Day |
| bgCheckFrequency       | String   | No            | Every 2 weeks       |

**Sample Input:**

{     "medicalReviewFrequency": "Every Alternate Day",     "isProvisional": false,     "hba1cCheckFrequency": "Every 2 weeks",     "tenantId": 4,     "bpCheckFrequency": "Every 2 weeks",     "id": 23,     "patientTrackId": 25,     "bgCheckFrequency": "Every Alternate Day",     "patientVisitId": 33 }

**Sample Output:**

```
{
    "message": "Treatment plan updated successfully.",
    "entity": null,
    "status": true,
    "entityList": null,
    "responseCode": 200,
    "totalCount": null
}
```
