Set Card Authorization Info

URL

Kart için otorizasyon (Yurtdışı satış, Yurtiçi e-ticaret) bilgilerini güncellemek için ilgili endpoint ve https metod bilgisi aşağıda verilmiştir.

HTTP Method URL
POST /card/setCardAuthorizationInfo

İstek Parametreleri

Parametre Tip Zorunlu Açıklama
card_no string Evet Kart Numarası
auth_dom_ecom bool Evet Yurt İçi E-ticaret , Online İşlemler (True: Yapabilir, False: Yapamaz.)
auth_dom_moto bool Evet Yurt İçi Mail Order , Telefon veya Posta Yolu ile Alışveriş (True: Yapabilir, False: Yapamaz.)
auth_dom_noCVV2 bool Evet Yurt İçi Cvv’siz İşlemler (True: Yapabilir, False: Yapamaz.)
auth_dom_contactless bool Evet Yurt İçi Temassız Ödeme (True: Yapabilir, False: Yapamaz.)
auth_dom_cash bool Evet Yurt İçi Nakit Çekim (True: Yapabilir, False: Yapamaz.)
auth_int_ecom bool Evet Yurt Dışı E-ticaret , Online İşlemler (True: Yapabilir, False: Yapamaz.)
auth_int_moto bool Evet Yurt Dışı Mail Order , Telefon veya Posta Yolu ile Alışveriş (True: Yapabilir, False: Yapamaz.)
auth_int_noCVV2 bool Evet Yurt Dışı Cvv’siz İşlemler (True: Yapabilir, False: Yapamaz.)
auth_int_contactless bool Evet Yurt Dışı Temassız Ödeme (True: Yapabilir, False: Yapamaz.)
auth_int_cash bool Evet Yurt Dışı Nakit Çekim (True: Yapabilir, False: Yapamaz.)
auth_int_pos_sale bool Evet Yurt Dışı Pos Ödemesi (True: Yapabilir, False: Yapamaz.)
auth_3d_secure bool Evet Yurt Dışı 3D Ödeme (True: Yapabilir, False: Yapamaz.)
corelation_id string Evet Korelasyon Id

Dönüş Parametreleri

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",
  "auth_dom_ecom": true,
  "auth_dom_moto": true,
  "auth_dom_noCVV2": true,
  "auth_dom_contactless": true,
  "auth_dom_cash": true,
  "auth_int_ecom": true,
  "auth_int_moto": true,
  "auth_int_noCVV2": true,
  "auth_int_contactless": true,
  "auth_int_cash": true,
  "auth_int_pos_sale": true,
  "auth_3d_secure": true
}

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