FILTER BY TAG

Authorizing a Payment with JCB Using Merchant Decryption Method

Required Fields for Authorizing a Payment Using JCB and the Merchant Decryption Method

The following fields are required when submitting an authorization request using the Merchant decryption method:
  • consumerAuthenticationInformation.cavv
    -set this field to the 3-D Secure cryptogram of the payment network token.
  • paymentInformation.card.number
    -set this field to the payment network token value.
  • paymentInformation.card.expirationMonth
    /
    paymentInformation.tokenizedCard.expirationMonth
    -set this field to the payment network token expiration month value.
  • paymentInformation.card.expirationYear
    /
    paymentInformation.tokenizedCard.expirationYear
    -set this field to the payment network token expiration year value.
  • consumerAuthenticationInformation.eciRaw
    -set this field to the ECI value contained in the Samsung Pay reply message.
  • paymentinformation.tokenizedCard.cryptogram
    -set this field to the network token cryptogram.
  • paymentInformation.tokenizedCard.transactionType
    -set this field to
    1
    .
  • processingInformation.paymentSolution
    -set this field to
    008
    .

Related Information

Example: Merchant Decryption with JCB Using the REST API

Authorization Request
{ "consumerAuthenticationInformation": { "cavv": "EHuWW9PiBkWvqE5juRwDzAUFBAk=", "eciRaw": "05" }, "processingInformation": { "paymentSolution": "008" }, "paymentInformation": { "tokenizedCard": { "expirationMonth": "12", "expirationYear": "2031", "number": "xxxx11111111xxxx", "transactionType": "1", "type": "007" } }, "billTo": { "firstName": "Jane", "lastName": "Smith", "address1": "123 Main St.", "address2": "Suite 12345", "locality": "Small Town", "administrativeArea": "CA", "postalCode": "98765", "country": "US", "email": "js@example.com", "phoneNumber": "9999999999" }, "orderInformation": { "amountDetails": { "currency": "USD", "totalAmount": "100.00" } } }
Authorization Response
{ "clientReferenceInformation": { "code": "ref123" }, "orderInformation": { "amountDetails": { "currency": "USD", "authorizedAmount": "100.00" } }, "processingInformation": { "reconciliationID": "15356268CR2XF23X" }, "processorInformation": { "approvalCode": "888888", "responseCode": "100", "avs": { "code": "X", "codeRaw": "I1" } } }