Create Wallet For Business Account

URL

The endpoint and http method information used to create a wallet for business users is given below.

HTTP Method URL
POST /v1/Wallet/CreateWalletForBusinessAccount

Request Params

Params Type Mandatory
name string Yes
currency_code string Yes
tenant_id int No

Response Params

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"
}