# 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.

### Get client types list

`GET` `https://secctrl.tutelar.io/api/v1/onboarding-protect/client-types`

**200: OK**

**401: Unauthorized**

```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"
      }
    ]
  }
}
```

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

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


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.v2.tutelar.io/merchant-onboarding/client-types.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
