Payment Transactions

Verify Card Details

Verify Card Details

Verification Method is a $0 transaction request sent to verify credit card details of the cardholder.

Verify Card Details with Required Fields

Example Request:

{  
   "amount":"0.00",
   "method":"CC",
   "type":"9",
   "nonce":{{$timestamp}},
   "card":{  
      "number":"379605176666666",
      "expiration_date":"0421"
         }
}

Example Response:

{
  "transaction_response": {
    "result_code": 1,
    "result_sub_code": "000",
    "result_text": "APPROVAL",
    "transaction_id": "1038546",
    "transaction_uid": "a804f6f5-4e83-408f-9bee-621c5b8a53c8",
    "transaction_datetime": "20200921T100708Z",
    "account_type": "AX",
    "account_last_4": "6666",
    "amount": "0.00",
    "approved_amount": "0.00",
    "method": "CC",
    "auth_code": "OK8364",
    "avs_result_code": "",
    "code_result": "",
    "type": "9",
    "expiration_date": "0421",
    "token": "357580076356666",
    "emv": "",
    "emv_tag_data": "",
    "entry_mode": ""
  },
  "nonce": "1600682824",
  "test": "0",
  "customer": {
    "first_name": "",
    "last_name": "",
    "street_1": "",
    "street_2": "",
    "city": "",
    "state": "",
    "zip": "",
    "country": "",
    "phone_number": "",
    "company": "",
    "customer_id": "",
    "email": "",
    "email_receipt": "",
    "notes": "",
    "action_code": ""
  },
  "card_info": {
    "card_class": "",
    "product_id": "",
    "prepaid_indicator": "",
    "detailcard_indicator": "X",
    "debitnetwork_indicator": ""
  }
}

Verify Card Details with All Fields

Example Request

{  
   "market_code": "M",
   "amount":"0.00",
   "method":"CC",
   "type":"9",
   "nonce":{{$timestamp}},
   "client_ip": "106.51.74.202",
   "test": "0",
   "card":{  
      "number":"379605176666666",
      "expiration_date":"1220"
   },
   "customer":{
    "first_name": "Oscar",
    "last_name": "Brady",
    "street_1": "55",
    "street_2": "Airport Drive",
    "city": "Pensacola",
    "state": "FL",
    "zip": "32503",
    "country": "US",
    "phone_number": "2025550197",
    "company": "Ferry Group",
    "customer_id": "AUTO",
    "invoice_number": null,
    "email": "oscar@brady.com",
    "email_receipt": "YES",
    "notes": "Sample Test ",
    "action_code": "1"
    }
}

Example Response

{
  "transaction_response": {
    "result_code": 1,
    "result_sub_code": "000",
    "result_text": "APPROVAL",
    "transaction_id": "1038547",
    "transaction_uid": "aea29c01-83e8-4593-8e9b-f56c50ade21b",
    "transaction_datetime": "20200921T100822Z",
    "account_type": "AX",
    "account_last_4": "6666",
    "amount": "0.00",
    "approved_amount": "0.00",
    "method": "CC",
    "auth_code": "OK8924",
    "avs_result_code": "Z",
    "code_result": "",
    "type": "9",
    "expiration_date": "1220",
    "token": "357580076356666",
    "emv": "",
    "emv_tag_data": "",
    "entry_mode": ""
  },
  "nonce": "1600682900",
  "test": "0",
  "customer_response": {
    "result_code": 1,
    "result_text": "SUCCESS",
    "result_sub_code": "000",
    "transaction_datetime": "20200921T100826Z",
    "token": "357580076356666",
    "account_type": "AX",
    "account_last_4": "6666",
    "expiration_date": "1220"
  },
  "customer": {
    "first_name": "Oscar",
    "last_name": "Brady",
    "street_1": "55",
    "street_2": "Airport Drive",
    "city": "Pensacola",
    "state": "FL",
    "zip": "32503",
    "country": "US",
    "phone_number": "2025550197",
    "company": "Ferry Group",
    "customer_id": "1000280",
    "email": "oscar@brady.com",
    "email_receipt": "YES",
    "notes": "Sample Test ",
    "action_code": "1"
  },
  "card_info": {
    "card_class": "",
    "product_id": "",
    "prepaid_indicator": "",
    "detailcard_indicator": "X",
    "debitnetwork_indicator": ""
  }
}