> For the complete documentation index, see [llms.txt](https://spice.docs.medtroniclabs.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://spice.docs.medtroniclabs.org/versions/spice-1.0/engineering/api-documentation/spice-services/treatment-plan-update.md).

# 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
}
```
