Update Customer Identity No

URL

The relevant endpoint and https method information for updating card information after KYC of anonymous accounts is given below.

HTTP Method URL
POST /card/updateCustomerIdentityNo

Request Params

Params Type Mandatory Description
first_name string Yes First Name
last_name string Yes Last Name
tenant_customer_no string Yes Account Number
wallet_number string Yes Wallet Number
national_id string No National ID (Not Required if Passport is Filled Out)
passport_no string No Passport Number (Not Required if TR ID is Filled)
phone_number string Yes Phone Number
corelation_id string No Corelation Id

Response Params

Params Type
status int
code string
message string
payload bool

REQUEST (POST) :

{
  "first_name": "Barış",
  "last_name": "Toper"
  "tenant_customer_no" : "65464343"
  "wallet_number": "4543543543",
  "national_id": "70432385943",
  "passport_no": " ",
  "phone_number": "905591247855",
  "corelation_id": ""
}

RESPONSE:

{
  "status": 0,
  "code": "200",
  "message": "",
  "payload": true
}