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 |
currency_code | string | Yes |
tenant_id | int | No |
Params | Type |
---|---|
status | int |
code | string |
message | string |
payload | string |
REQUEST (POST):
{
"name": "John Doe",
"currency_code": "TRY",
"tenant_id": 0
}
RESPONSE:
{
"status": 0,
"code": "100",
"message": null,
"payload": "5164894561"
}