Example: Merchant Decryption with JCB Using the REST API {#samsungpay-auth-merdecrypt-ex-jcb-rest}
==================================================================================================

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

