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 | Description |
---|---|---|---|
name | string | Yes | Name |
currency_code | string | Yes | Currency Code |
use_fast_iban | bool | No | Will Fast IBAN be used? |
tenant_id | int | No | Tenant Id |
Params | Type | Description |
---|---|---|
status | int | Status |
code | string | Code |
message | string | Message |
payload | string | Payload |
REQUEST (POST):
{
"name": "John Doe",
"currency_code": "TRY",
"use_fast_iban": false,
"tenant_id": 0
}
RESPONSE:
{
"status": 0,
"code": "100",
"message": null,
"payload": "5164894561"
}