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 Description
name string Yes Wallet Name
currency_code string Yes Currency Code ("TRY)
tenant_id int Yes Tenant ID

Response Params

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

Chatbot