# Create

| **API URL**     | {{url}}/admin-service/clinical-workflow/create |
| --------------- | ---------------------------------------------- |
| **Method**      | POST                                           |
| **Description** | Create clinical workflow                       |

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

| **Field Name** | **Type** | **Mandatory** | **Example**           |
| -------------- | -------- | ------------- | --------------------- |
| name           | String   | Yes           |                       |
| viewScreens    | Array    | Yes           | Screening, Assessment |
| countryId      | Number   | Yes           | 1                     |
| tenantId       | Number   | Yes           | 1                     |

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

{     "name": "Gluocose",     "viewScreens": \[         "Screening",         "Assessment"     ],     "countryId": "1",     "tenantId": "1" }

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

```
{
    "message": "Account workflow created successfully.",
    "entity": null,
    "status": true,
    "entityList": null,
    "responseCode": 201,
    "totalCount": null
}
```
