# Client Types

The Client Types helps to assess the level of risk associated with a particular user. Different client types have varying levels of risk associated with them. This Client type implementation includes fraud prevention measures, holding reserves, or imposing transaction limits.&#x20;

## Get client types list

<mark style="color:blue;">`GET`</mark> `https://secctrl.tutelar.io/api/v1/onboarding-protect/client-types`

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

```json
{
    "success": true,
    "message": "Client types are",
    "data": {
        "client_types": [
            {
                "code": "IND00017",
                "name": "Agriculture and Allied industries"
            },
            {
                "code": "IND00016",
                "name": "Airlines"
            },
            {
                "code": "INDH0054",
                "name": "Association & Services"
            },
            {
                "code": "IND00018",
                "name": "Auto componenets"
            },
            {
                "code": "INDA0055",
                "name": "Automobile & Lubricants"
            },
            {
                "code": "IND00002",
                "name": "Automobiles"
            },
            {
                "code": "IND00003",
                "name": "Aviation"
            },
            {
                "code": "IND00012",
                "name": "Bank"
            },
            {
                "code": "IND00004",
                "name": "Banking"
            },
            {
                "code": "IND00005",
                "name": "Biotechnology"
            }
        ]
    }
}
```

{% endtab %}

{% tab title="401: Unauthorized " %}

```json
{
    "message": "Invalid authentication credentials"
}
```

{% endtab %}
{% endtabs %}

#### Success Response

```json
{
    "success": true,
    "message": "Client types are",
    "data": {
        "client_types": [
            {
                "code": "IND00017",
                "name": "Agriculture and Allied industries"
            },
            {
                "code": "IND00016",
                "name": "Airlines"
            },
            {
                "code": "INDH0054",
                "name": "Association & Services"
            },
            {
                "code": "IND00018",
                "name": "Auto componenets"
            },
            {
                "code": "INDA0055",
                "name": "Automobile & Lubricants"
            },
            {
                "code": "IND00002",
                "name": "Automobiles"
            },
            {
                "code": "IND00003",
                "name": "Aviation"
            },
            {
                "code": "IND00012",
                "name": "Bank"
            },
            {
                "code": "IND00004",
                "name": "Banking"
            },
            {
                "code": "IND00005",
                "name": "Biotechnology"
            }
        ]
    }
}
```
