Unassign User From Wallet

URL

The relevant endpoint and http method information are given below to remove the access of the user associated with the wallet.

HTTP Method URL
POST /v1/Account/UnassignUserFromWallet

Request Params

Params Type Mandatory Description
tenant_id int No
account_number string Yes
account_type int Yes
user_number string Yes
wallet_number string Yes

Response Params

Params Type Description
status int
code string
message string
payload object

REQUEST (POST) :

{
  "tenant_id": 5,
  "account_number": "1211581141",
  "account_type": 1,
  "user_number": "6511111109131710119",
  "wallet_number": "1155121211"
}

RESPONSE:

{
    "status": 0,
    "code": "100",
    "message": "Cüzdana erişim kaldırıldı",
    "payload": true
}