Accounts
Initiate a new account for the customer
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
Accounts
Initiate a new account for the customer
Initiate a process of creation a new financial account for the customer
POST
/
v1
/
accounts
curl --request POST \
--url https://client-api.dev.finhost.io/v1/accounts \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"title": "<string>",
"currency": "<string>",
"companyId": "<string>",
"variantId": "<string>"
}'
{
"id": "db4e04c3-4756-f3c4-7497-be928c51135",
"entity": "account",
"operation": "async",
"status": "processed"
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
Response
201 - application/json
The account was initiated
The response is of type object
.
curl --request POST \
--url https://client-api.dev.finhost.io/v1/accounts \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"title": "<string>",
"currency": "<string>",
"companyId": "<string>",
"variantId": "<string>"
}'
{
"id": "db4e04c3-4756-f3c4-7497-be928c51135",
"entity": "account",
"operation": "async",
"status": "processed"
}