GET
/
contracts
/
clients
curl --request GET \
  --url https://client-api.dev.finhost.io/contracts/clients \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "BasicContract",
    "title": "Basic contract",
    "level": 10,
    "available": true,
    "params": [
      {
        "title": "Account initiation",
        "description": "Creates new account for the client",
        "calculated": true,
        "operation": "maintenance",
        "scope": "disposable",
        "action": "accountInitiation",
        "controllers": [
          "accountLimit",
          "transferPlane",
          "systemLimit"
        ],
        "accountLimit": [
          {
            "currency": "USD",
            "accounts": 2
          }
        ],
        "transferPlane": [
          {
            "currency": "USD",
            "calculator": "max",
            "from": 0,
            "flat": 0.03,
            "percentage": 0.01
          }
        ],
        "systemLimit": "riskLevel"
      }
    ]
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json
200 response

The response is of type object[].