# Investigation Create

| **API URL**     | {{url}}/spice-service/patient-labtest/create |
| --------------- | -------------------------------------------- |
| **Method**      | POST                                         |
| **Description** | Investigation creation                       |

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

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

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

| **Field Name** | **Type** | **Mandatory** | **Example** |
| -------------- | -------- | ------------- | ----------- |
| labTestName    | String   | Yes           | Fast plasma |

**Sample Input:**

{     "tenantId": 4,     "labTest": \[         {             "isAbnormal": false,             "isReviewed": false,             "labTestId": 2,             "labTestName": "Fast plasma",             "referDateDisplay": "2023-05-26T18:05:18+05:30",             "referredBy": 5,             "referredByDisplay": "XXXX"         }     ],     "patientTrackId": 25,     "patientVisitId": 33 }

**Sample Output:**

```
  {
    "message": "Patient LabTest added successfully.",
    "entity": null,
    "status": true,
    "entityList": null,
    "responseCode": 201,
    "totalCount": null
}
```
