# Get a workflow by supplying a workflow code

## Get a workflow by supplying the workflow code

<mark style="color:blue;">`GET`</mark> `{{domain}}/api/WorkFlow/{code}`

#### Path Parameters

| Name | Type   | Description       |
| ---- | ------ | ----------------- |
| code | string | The workflow code |

#### Headers

| Name          | Type   | Description                  |
| ------------- | ------ | ---------------------------- |
| client-id     | string | client id of the application |
| Authorization | string | Bearer Token                 |

{% tabs %}
{% tab title="200 " %}

```
{
    "message": "Ok",
    "isError": false,
    "data": {
        "id": 1,
        "name": "string",
        "code": "{{client-id}}",
        "level": 1
    }
}
```

{% endtab %}
{% endtabs %}
