For the complete documentation index, see llms.txt. This page is also available as Markdown.

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/v2/onboarding-protect/client-types

Name
Value

Content-Type

application/json

Authorization

Bearer eyJhbGciOiJ.....

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

Success Response

Last updated