# Assessment Bplog Create

| **API URL**     | {{url}}/spice-service/assessment/bplog-create |
| --------------- | --------------------------------------------- |
| **Method**      | POST                                          |
| **Description** | Assessment Bplog Create                       |

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

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

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

| Field Name | **Type**         | **Mandatory** | Example    |
| ---------- | ---------------- | ------------- | ---------- |
| Height     | Double-precision | Yes           | 168        |
| Weight     | Double-precision | Yes           | 70         |
| bpTakenOn  | Timestamp        | Yes           | 2023-05-08 |
| systolic   | Integer          | Yes           | 120        |
| diastolic  | Integer          | Yes           | 110        |

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

{     "avgSystolic": 210,     "bpTakenOn": "2023-05-08T18:34:53+05:30",     "gender": "Female",     "isRegularSmoker": true,     "cvdRiskScore": 10,     "weight": 53.0,     "avgBloodPressure": "210/200",     "cvdRiskLevel": "Medium risk",     "unitMeasurement": "metric",     "cvdRiskScoreDisplay": "10% - Medium risk",     "patientTrackId": 1,     "avgDiastolic": 200,     "age": 26.0,     "bpLogDetails": \[         {             "diastolic": 200.0,             "systolic": 210.0         },         {             "diastolic": 200.0,             "systolic": 210.0         },         {             "diastolic": 200.0,             "systolic": 210.0         }     ],     "height": 152.0,     "bmi": 22.94 }

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

```
{
    "message": "Medical review created successfully for a patient.",
    "entity": null,
    "status": true,
    "entityList": null,
    "responseCode": 201,
    "totalCount": null
}
```
