The endpoint and http method information used to create a wallet for business users is given below.
HTTP Method | URL |
---|---|
POST | /v1/Wallet/CreateWalletForBusinessAccount |
Params | Type | Mandatory |
---|---|---|
name | string | Yes |
account_number | string | Yes |
currency_code | string | Yes |
tenant_id | int | No |
use_fast_iban | bool | No |
Params | Type |
---|---|
status | int |
code | string |
message | string |
payload | string |
REQUEST (POST):
{
"name": "deneme",
"account_number": "32145646443",
"currency_code": "TRY",
"tenant_id": 0,
"use_fast_iban": false,
}
RESPONSE:
{
"status": 0,
"code": "100",
"message": null,
"payload": "5164894561"
}