Contracts
Receive information about the available contracts for the clients
Clients
Companies
- GETList Companies
- GETGet Company
- POSTAccept contract for company
- GETGet KYB access token for company
- GETReceive information about the company inDevelopment
- GETReceive information about the company
- POSTCreate company
- PATCHUpdate company
- PATCHSet company email
- POSTVerify company email
- POSTResend verification code
- PATCHAccept contract
Accounts
- GETReceive all accounts for the client
- PATCHActivate the account of the customer
- GETReceive all accounts for the client
- POSTInitiate a new account for the customer
- GETReceive all accounts for the client
- PATCHActivate the account of the customer
- GETGet bank details for extAccount
- GETReceive bank detailes for the account
- POSTCreate statements for account
- GETReceive information about iban
- PATCHActivate the account of the client
Recipients
Contracts
KYC
Transfers
Crypto
Contracts
Recipients
Contracts
Receive information about the available contracts for the clients
Available contracts for the clients
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
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[]
.
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"
}
]
}
]