> 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/admin-services/clinical-workflow/create.md).

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