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 | Wallet Name |
currency_code | string | Yes | Currency Code ("TRY) |
tenant_id | int | Yes | Tenant ID |
Params | Type | Description |
---|---|---|
status | int | Status |
code | string | Code |
message | string | Message |
payload | string | Payload |
REQUEST (POST):
{
"name": "deneme",
"currency_code": "TRY",
"tenant_id": 5,
}
RESPONSE:
{
"status": 0,
"code": "100",
"message": null,
"payload": "5164894561"
}