# Lab Test Range - Create

| **API URL**     | {{url}}/admin-service/labtest-result-ranges/create |
| --------------- | -------------------------------------------------- |
| **Method**      | POST                                               |
| **Description** | Create lab test range                              |

#### **Input** <a href="#labtestrange-create-input" id="labtestrange-create-input"></a>

| **Field Name** | **Type** | **Mandatory** | **Example**       |
| -------------- | -------- | ------------- | ----------------- |
| minimumValue   | Number   | Yes           | 3.5               |
| maximumValue   | Number   | Yes           | 5                 |
| unit           | String   | Yes           | mEq/L             |
| displayOrder   | Number   | Yes           |                   |
| displayName    | String   | Yes           | (3.5 to 5.0)mEq/L |

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

{\
"tenantId": "156",\
"labTestResultId": 115,\
"labTestResultRanges": \[\
{\
"minimumValue": 3.5,\
"maximumValue": 5,\
"unit": "mEq/L",\
"displayOrder": 1,\
"displayName": "(3.5 to 5.0)mEq/L",\
"unitId": 1\
}\
]\
}

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

```
{
    "message": "Labtest result range created successfully.",
    "entity": null,
    "status": true,
    "entityList": null,
    "responseCode": 201,
    "totalCount": null
}
```
