Anonim hesapların KYC yapılmasından sonra kart bilgilerinin güncellenmesi için ilgili endpoint ve https metod bilgisi aşağıda verilmiştir.
| HTTP Method | URL |
|---|---|
| POST | /card/updateCustomerIdentityNo |
| Parametre | Tip | Zorunlu | Açıklama |
|---|---|---|---|
| first_name | string | Evet | Adı |
| last_name | string | Evet | Soyadı |
| tenant_customer_no | string | Evet | Müşteri Numarası |
| wallet_number | string | Evet | Cüzdan Numarası |
| national_id | string | Hayır | TC Kimlik Numarası (Pasaport Dolduruldu İse Zorunlu Değil) |
| passport_no | string | Hayır | Pasaport Numarası (TC Dolduruldu ise Zorunlu Değil) |
| phone_number | string | Evet | Telefon Numarası |
| corelation_id | string | Hayır | Korelasyon Id |
| Parametre | Tip | Açıklama |
|---|---|---|
| status | int | İşlem Statüsü |
| code | string | Kod |
| message | string | Mesaj |
| payload | bool | Veri |
İSTEK (POST) :
{
"first_name": "Barış",
"last_name": "Toper"
"tenant_customer_no" : "65464343"
"wallet_number": "4543543543",
"national_id": "70432385943",
"passport_no": " ",
"phone_number": "905591247855",
"corelation_id": ""
}
YANIT:
{
"status": 0,
"code": "200",
"message": "",
"payload": true
}