Kart için otorizasyon bilgilerini sorgulamak için ilgili endpoint ve https metod bilgisi aşağıda verilmiştir.
HTTP Method | URL |
---|---|
POST | /card/getCardAuthorizationInfo |
Parametre | Tip | Zorunlu | Açıklama |
---|---|---|---|
card_no | string | Evet | Kart Numarası |
corelation_id | string | Evet | Korelasyon Id |
Parametre | Tip | Açıklama |
---|---|---|
status | int | İşlem Statüsü |
code | string | Kod |
message | string | Mesaj |
payload | obje | Veri |
card_no | string | Kart Numarası |
card_token | string | |
authDomEcom | bool | Yurt İçi E-ticaret , Online İşlemler (True: Yapabilir, False: Yapamaz.) |
authDomMoto | bool | Yurt İçi Mail Order , Telefon veya Posta Yolu ile Alışveriş (True: Yapabilir, False: Yapamaz.) |
authDomNoCVV2 | bool | Yurt İçi Cvv’siz İşlemler (True: Yapabilir, False: Yapamaz.) |
authDomContactless | bool | Yurt İçi Temassız Ödeme (True: Yapabilir, False: Yapamaz.) |
authDomCash | bool | Yurt İçi Nakit Çekim (True: Yapabilir, False: Yapamaz.) |
authIntEcom | bool | Yurt İçi Nakit Çekim (True: Yapabilir, False: Yapamaz.) |
authIntMoto | bool | Yurt Dışı Mail Order , Telefon veya Posta Yolu ile Alışveriş (True: Yapabilir, False: Yapamaz.) |
authIntNoCVV2 | bool | Yurt Dışı Cvv’siz İşlemler (True: Yapabilir, False: Yapamaz.) |
authIntContactless | bool | Yurt Dışı Temassız Ödeme (True: Yapabilir, False: Yapamaz.) |
authIntCash | bool | Yurt Dışı Nakit Çekim (True: Yapabilir, False: Yapamaz.) |
authIntPosSale | bool | Yurt Dışı Pos Ödemesi (True: Yapabilir, False: Yapamaz.) |
auth3dSecure | bool | Yurt Dışı 3d Ödeme (True: Yapabilir, False: Yapamaz.) |
İSTEK (POST) :
{
"card_no": "434610lbvqig0051",
"corelation_id": "4000001489104986"
}
YANIT
{ {
"status": 0,
"code": "200",
"message": "",
"payload": {
"cardNo": "434610lbvqig0051",
"cardToken": null,
"authDomEcom": true,
"authDomMoto": true,
"authDomNoCVV2": true,
"authDomContactless": true,
"authDomCash": true,
"authIntEcom": true,
"authIntMoto": true,
"authIntNoCVV2": true,
"authIntContactless": true,
"authIntCash": true,
"authIntPosSale": true,
"auth3dSecure": true
}
}