Set Card Authorization Info

URL

The relevant endpoint and https method information for updating the authorization (Foreign sales, Domestic e-commerce) information for the card is given below.

HTTP Method URL
POST /card/setCardAuthorizationInfo

Request Params

Params Type Mandatory Description
card_no string Yes Card Number
auth_dom_ecom boolean Yes Domestic, E-Commerce, Online Transactions
auth_dom_moto boolean Yes Domestic Mail Order, Telephone or Postal Shopping
auth_dom_noCVV2 boolean Yes Domestic Transactions Without Cvv
auth_dom_contactless boolean Evet Domestic Contactless Payment
auth_dom_cash boolean Yes Domestic Cash Withdrawal
auth_int_ecom boolean Yes International E-commerce, Online Transactions
auth_int_moto boolean Yes International Mail Order, Telephone or Postal Shopping
auth_int_noCVV2 boolean Yes Transactions Abroad without Cvv
auth_int_contactless boolean Yes International Contactless Payment
auth_int_cash boolean Yes Foreign Cash Withdrawals
auth_int_pos_sale boolean Yes Overseas POS Payment
auth_3d_secure boolean Yes Overseas 3d Payment
corelation_id string Yes Corelation Id

Response Params

Params Type
status int
code string
message string
payload object
card_no string
card_token string
authDomEcom boolean
authDomMoto boolean
authDomNoCVV2 boolean
authDomContactless boolean
authDomCash boolean
authIntEcom boolean
authIntMoto boolean
authIntNoCVV2 boolean
authIntContactless boolean
authIntCash boolean
authIntPosSale boolean
auth3dSecure boolean

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

RESPONSE:

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