The Visa Click to Pay SDK provides JavaScript APIs to be used by a SRC initiator (SRCi) to communicate between the Digital Payment Application (DPA) and the Visa SRC system.
The SRCi has the responsibility to initialize the SDK for use with a DPA, which includes providing values to control and customize the DPA’s interaction with the Digital Card Facilitator (DCF), and the Visa SRC system. After initialization by calling init, the SDK can be used to:
Visa and other participating networks, such as MasterCard or American Express, each provide an SRC system to handle transactions under the EMV® Secure Remote Commerce Standards. Each SRC system provides a JavaScript API to invoke operations on the SRC system.
Important: This document only provides information about the Visa Secure Remote Commerce implementation of SRC. Refer to other networks’ documentation for non-Visa implementations of SRC.
You will need to take similar actions or call similarly named methods for each network you choose to support. The specifics of all non-Visa SRC methods and actions are outside the scope of this document; however, the following guidelines might be helpful:
Before calling init, you must load the SRC SDK. The SDK creates a WindowRef that connects the digital terminal to the DCF.
The JavaScript SDK endpoint to use depends on whether you want to run the Digital Terminal SRC initiator (SRCi) in the sandbox or in production:
Environment |
JavaScript SDK Endpoint |
---|---|
Sandbox |
https://sandbox-assets.secure.checkout.visa.com/ checkout-widget/resources/js/src-i-adapter/visaSdk.js?v2 |
Production |
https://assets.secure.checkout.visa.com/ checkout-widget/resources/js/src-i-adapter/visaSdk.js?v2 |
<head>
...
</head>
<body>
<script src="https://sandbox-assets.secure.checkout.visa.com/checkout-widget/resources/js/src-i-adapter/visaSdk.js?v2">
</script>
<script>
let vSrcAdapter = window.vAdapters.VisaSRCI;
let vSrc = new vSrcAdapter();
</script>
</body>
Internally, a WindowRef is used to host the UI. When presenting any SRC UI, the SRC SDK controls the seamless operation of the window as either a pop-up window or an iFrame. The SRC SDK passes the WindowRef to the Digital Card Facilitator (DCF) so that the DCF UI can be rendered in the referenced window.
You must create keys for source validation, encryption of PANs, decrypting the payload, and providing authentication of your requests. Visa supports both symmetric and asymmetric data encryption; however, asymmetric data encryption keys require a public certificate from the entity performing the decryption.
The purpose of the authentication data token is to provide authentication and integrity protection to the SRC summary payload.
Field |
Description |
---|---|
kid |
Key identifier for the signing key. When Visa generates this header, the signing key is used to lookup the Outbound Message Authentication key. When Visa verifies the signature of this header, the signing key is used to lookup the Inbound Message Authentication key. Format: Alphanumeric |
alg |
Algorithm used to sign this ID token Format: It is one of the following values:
|
iat |
Issuance time in UTC Time at which the JWT was issued. This should not be before the expiration time (exp). Format: UNIX Epoch timestamp, in milliseconds |
jti |
Unique identifier for the token. The jti can be used as a nounce. Format: Case-sensitive string |
Initializes the app with common state. The init method must be called before any other methods. It is synchronous in operation.
init(initData)
initData is a structure that contains the following fields:
Field |
Description |
---|---|
srciTransactionId |
(Required) A unique transaction ID created by the SRCi, which may be created on the merchant page. It must be passed through to all networks (SRC systems) and DCFs. Format: Alphanumeric, maximum 100 characters |
srciDpaId |
(Conditional) A unique ID provided by the SRCi for the DPA, which can be used as an external client ID. Required if srciDpaId in dpaData is not provided. Format: String |
srcInitiatorId |
(Required) SRCi identifier generated by an SRC system during the onboarding process. Format: String |
dpaData |
(Conditional) DPA registration data. Required if srciDpaId is not provided. Format: DpaData structure |
dpaTransactionOptions |
(Required) DPA configuration data, which overrides the configu ration on the SRC system that was created during DPA registration. Format: DpaTransactionOptions structure |
None
var initParams = {
"srciTransactionId": "...",
"srcInitiatorId": "F14...YE",
"srciDpaId": "F14...YE", "dpaData": {
"srcDpaId": "F14...YE",
"dpaPresentationName": "...",
"dpaUri": "http://www.---.com", "dpaThreeDsPreference": "UNKNOWN"
},
"dpaTransactionOptions": {
"dpaLocale": "en_US", "dpaAcceptedBillingCountries": [
"US", "CA"
],
"dpaAcceptedShippingCountries": ["US",
"CA"
],
"dpaBillingPreference": "FULL", "dpaShippingPreference": "FULL", "consumerNameRequested": true, "consumerEmailAddressRequested": true, "consumerPhoneNumberRequested": true, "paymentOptions": {
"dynamicDataType": "CARD_APPLICATION_CRYPTOGRAM_LONG_FORM",
"dpaPanRequested": false
},
"reviewAction": "continue", "checkoutDescription": "Sample checkout", "transactionType": "PURCHASE", "orderType": "REAUTHORIZATION",
"payloadTypeIndicator": "PAYMENT", "transactionAmount": {
"transactionAmount": "99.95", "transactionCurrencyCode": "USD"
},
"merchantOrderId": "...",
"merchantCategoryCode": "...", "merchantCountryCode": "US", "customInputData": {
//For Merchant Orchestrated Checkout experience: "checkoutOrchestrator": "merchant"
}
}
};
async function init(initParams, cb) {
const promiseData = await
vSrc.init(initParams).then(function (response) {
return response;
})
.catch(function (error) {
return error;
});
cb(promiseData);
}
function callInit() {
init(initParams, function (result) {
console.log(result);
if (!Object.keys(result).length) {
console.log("init() successful");
//Next -> call isRecognized() callIsRecognized();
} else {
console.log("init() failure");
// Some error in init, validate input or retry
}
});
}
Note: Merchant Orchestrated Checkout is indicated by the following JSON structure in the initParams variable of this example:
"customInputData": {
"checkoutOrchestrator": "merchant"
}
Reason Code |
Description |
---|---|
SRCI_ID_MISSING |
The identifier for the SRCi (scrInitiatorId) is missing. |
DPA_ID_MISSING |
srcDpaId and dpaData both are missing. SRC system cannot identify the DPA. |
SRCI_TXN_ID_MISSING |
srciTransactionId is missing. |
Also, see Standard Error Codes.
Determines whether the consumer is recognized, e.g. by detecting the presence of a local cookie in the browser environment.
If the user is recognized, this method obtains the JSON Web Token (JWT) to optionally pass to precheckout call to other SRC. This method may then (as an optimization) initiate the Get Precheckout Data request.
isRecognized()
None
Field |
Description |
---|---|
recognized |
Whether the consumer is recognized. Format: It is one of the following values:
|
idTokens |
A token that allows the SRC systems to communicate with each other for SRC consumer identity verification; This SRC ID token should be discarded at the end of an SRC checkout transaction. Required if the consumer is recognized; Not need to be present if the consumer is not recognized. Format: List of ID Tokens in JWT format. |
{
"recognized": true, "idTokens": [
"eyJ...0g"
]
}
{
"recognized": false, "idTokens": []
}
async function isRecognized(cb) {
const promiseData = await vSrc.isRecognized()
.then(function (data) {
return data;
})
.catch(function (err) {
return err;
});
cb(promiseData);
}
function callIsRecognized() {
isRecognized((response) => {
console.log(response);
if (response.recognized) {
// Store the token -> response.idTokens
// User is recognized. Call getSrcProfile with tokens,
// get masked card details, present in UI callGetSrcProfile(response.idTokens);
} else {
// User is not recognized -> Call identityLookup callIdentityLookup();
}
});
}
Reason Code |
Description |
---|---|
ACCT_INACCESSIBLE |
The account exists but is not currently accessible, e.g., it is locked. |
See Standard Error Codes.
Obtains the masked card and other account profile data associated with the userId.
The method uses a JWT, or a secure cookie from the browser to identify the user. The returned data can be used for card selection.
getSrcProfile(idTokens)
Field |
Description |
---|---|
idTokens |
(Optional) A unique identifier associated with the masked token, mostly used for multi-SRC systems. If not specified, the SRC system may fetch cards based on cookie recognition or not return any cards. The SRCi can provide token IDs received from SRC systems based on consumer recognition performed via OTP (for unrecognized customer flow) or cookie (for recognized customer flow). Format: List of ID Tokens in JWT format |
Field |
Description |
---|---|
profiles |
SRC profiles associated with each recognized user using JWT (idToken). Format: List of SrcProfile structures |
srcCorrelationId |
The unique identifier generated by SRC system to track and link SRC messages. This is used as a transaction identifier assigned by the SRC system for this particular transaction. Returned when the cards are returned successfully. Format: Universally Unique Identifier (UUID) |
{
"profiles": [
{
"idToken": "eyJ...g", "maskedCards": [
{
"cardError": null, "dateofCardCreated": 1556589662806,
"dateofCardLastUsed": 1563181766426, "dcf": {
"type": null
},
"digitalCardData": {
"artHeight": 105, "artUri": "https://sandbox.secure.checkout.visa.com/VmeCardArts/.png", "artWidth": 164, "status": "ACTIVE"
},
"eligible": true, "maskedBillingAddress": {
"addressId": "e0d...01", "city": "*****",
"countryCode": "US",
"line1": "Asd*****", "line2": null,
"line3": null, "state": "VA",
"zip": "*****"
},
"panBin": null, "panExpirationMonth": "12",
"panExpirationYear": "2023",
"panLastFour": "1111", "srcDigitalCardId": "c96...01"
},
{
"cardError": null, "dateofCardCreated": 1512433695415,
"dateofCardLastUsed": 1562743621206, "dcf": {
"type": null
},
"digitalCardData": {
"artHeight": 105,
"artUri": "https://sandbox.secure.checkout.visa.com/ VmeCardArts/. png", "artWidth": 164, "status": "ACTIVE"
},
"eligible": true, "maskedBillingAddress": {
"addressId": "89e. 01",
"city": "*****",
"countryCode": "CA",
"line1": "Can*****", "line2": null,
"line3": null, "state": "ON",
"zip": "*****"
},
"panBin": null, "panExpirationMonth": "09",
"panExpirationYear": "2019",
"panLastFour": "2958",
"srcDigitalCardId": "301. 01"
}
],
"maskedConsumer": {
"firstName": "T*****", "lastName": "K*****", "fullName": "T***** K*****",
"emailAddress": "the**@gmail.com", "countryCode": "US",
"languageCode": "en-US"
}
}
],
"srcCorrelationId": "750...01"
};
async function getSrcProfile(input, cb) {
let promiseData = await vSrc.getSrcProfile(input)
.then(function (data) {
return data;
})
.catch(function (err) {
return err;
});
cb(promiseData);
}
function callGetSrcProfile(_idTokens) {
getSrcProfile(_idTokens, function (result) {
console.log(result);
// Present the list of cards to user for selection
// List of Cards -> result.profiles[0].maskedCards
});
}
Reason Code |
Description |
---|---|
SRCI_ID_MISSING |
The identifier for the SRCi (scrInitiatorId) is missing. |
DPA_ID_MISSING |
srcDpaId and dpaData both are missing. SRC system cannot identify the DPA. |
SRCI_TXN_ID_MISSING |
srciTransactionId is missing. |
Also, see Standard Error Codes.
Performs consumer identity lookup within the SRC System using the provided email address or later, the phone number.
identityLookup(consumerIdentity)
Field |
Description |
---|---|
consumerIdentity |
(Required) The consumers identity to be used for identity lookup. Format: consumerIdentity structure. |
Field |
Description |
---|---|
consumerPresent |
Whether the consumer exists in the SRC system. Format: It is one of the following values:
|
lastUsedCardTimestamp | Timestamp of the last used Visa card associated with the consumer identity. If no used card is available, this value will not be sent back. Format: UNIX Epoch timestamp. The value is in milliseconds. |
{
"consumerPresent": true
}
async function identityLookup(input, cb) {
let promiseData = await vSrc.identityLookup(input)
.then(function (data) {
return data;
})
.catch(function (err) {
return err;
});
cb(promiseData);
}
function callIdentityLookup() {
var consumerIdentity = {
identityProvider: 'SRC', identityValue: '[email protected]', type: 'EMAIL'
}
identityLookup(consumerIdentity, function (result) {
console.log(result);
if (result.consumerPresent) {
// Consumer present -> call initiateIdentityValidation callInitiateIdentityValidation();
} else {
...
};
});
}
Reason Code |
Description |
---|---|
FRAUD |
The user account was locked or disabled. |
ID_FORMAT_UNSUPPORTED |
Unsupported ID format. |
CONSUMER_ID_MISSING |
Consumer identity is missing in the request. |
ACCT_INACCESSIBLE |
The account exists but is not currently accessible, e.g. it is locked. |
Also, see Standard Error Codes.
Sends a validation code to the specified consumer.
This method sends a one-time password (OTP) to the consumer to start validation. Call this method before using profile data returned from getSrcProfile.
initiateIdentityValidation()
None
Field |
Description |
---|---|
maskedValidationChannel |
Masked email and phone number, if available, used to deliver the validation code (like OTP). Example: "u**@example.com,*********67" |
{
"maskedValidationChannel": "u**@example.com,*********67"
}
async function initiateIdentityValidation(cb) {
let promiseData = await vSrc.initiateIdentityValidation()
.then(function (data) {
return data;
})
.catch(function (err) {
return err;
});
cb(promiseData);
}
function callInitiateIdentityValidation() {
initiateIdentityValidation(function (result) {
console.log(result); if (result.maskedValidationChannel) {
// Present UI and get the OTP from user
}
});
}
Reason Code |
Description |
---|---|
OTP_SEND_FAILED |
The OTP could not be sent to the recipient. |
RETRIES_EXCEEDED |
The number of retries for generating the OTP exceeded the limit. |
ID_INVALID |
Invalid ID. |
UNRECOGNIZED_CONSUMER_ID |
Consumer ID could not be recognized. |
ACCT_INACCESSIBLE |
The account exists but is not currently accessible, e.g. it is locked. |
Also, see Standard Error Codes.
Receives the validation code sent to the specified consumer, which validates the consumer’s identity.
This method completes the identity validation by receiving the one-time password (OTP) sent to the consumer to start validation. Check the returned code against maskedValidationChannel. Call this method before using profile data returned from getSrcProfile.
completeIdentityValidation(validationData)
Field |
Description |
---|---|
validationData |
(Required) One Time Password (OTP) code, submitted by the consumer. Format: String containing a 6-digit OTP code. |
Field |
Description |
---|---|
idToken |
SRC ID token created by the SRC system after successful consumer authentication. Format: The ID Token in JWT format |
{
"idToken": "eyJ...0g"
}
function callCompleteIdValidationClicked() {
var otp = document.getElementById('otpBtnVal').value; validationData = {
validationData: otp
};
callCompleteIdValidation(validationData);
}
async function completeIdentityValidation(input, cb) {
let promiseData = await vSrc.completeIdentityValidation(input)
.then(function (data) {
return data;
})
.catch(function (err) {
return err;
});
cb(promiseData);
}
function callCompleteIdValidation(otp) {
completeIdentityValidation(otp, function (result) {
console.log(result); if (!result.error) {
// Store the token -> result.idToken
// call getSrcProfile with tokens,
// get masked card details, present in UI
var idTokens = []; // Or get previous idTokens array, if any idTokens.push(result.idToken);
callGetSrcProfile(idTokens);
} else {
// validation error
}
});
}
Reason Code |
Description |
---|---|
CODE_INVALID |
The supplied OTP value was invalid. Try again. |
CODE_EXPIRED |
The OTP is expired. Regenerate the OTP and try again. |
RETRIES_EXCEEDED |
The limit for the number of retries for OTP generation was exceeded. |
VALIDATION_DATA_MISSING |
Validation data missing. |
ACCT_INACCESSIBLE |
The account exists but is not currently accessible, e.g. it is locked. |
Also, see Standard Error Codes.
This method performs checkout using the selected card. If successful, the response contains summary checkout information and, conditionally, an encrypted payload containing PCI and/or PII data, depending on the configuration of the dpaTransactionOptions.
This method is called after the consumer has chosen a masked card for checkout from the SRC's candidate list. Typically, the SRCi calls back DPA to retrieve any additional data that the DPA may have, such as updated dpaTransactionOptions, based on the selected card. If the DPA returns some data via this callback, then the SRCi should insert that data without modification into the checkout request.
The checkout method also supports a card being provided during the checkout flow. When the combined flow is executed, the client should provide the encrypted card object, instead of ID of the digital card identifier, as an input parameter. The card will be enrolled into the SRC system and used for checkout.
You must include the following fields in the encrypted card (encryptedCard) parameter:
You must also pass the mobileNumber field in the consumer parameter.
Optionally, you can include the billing address in the encryptedCard parameter and the emailAddress field in the consumer parameter.
You must specify the ID of the selected card in the srcDigitalCardId parameter.
checkout(data)
Field |
Description |
---|---|
srcCorrelationId |
(Optional) Correlation ID generated by the SRC system and returned by getSrcProfile. Format: Universally Unique Identifier (UUID) |
srciTransactionId |
(Required) A unique ID created by the SRCi Format: Alphanumeric, maximum 100 characters |
srcDigitalCardId |
(Conditional) ID of the selected card. Required if any card is selected from the SRC profile, returned by the SRC system. Format: String |
encryptedCard |
(Conditional) An encrypted card object, which describes the card to be enrolled with the SRC system. The public key of the target SRC system is used for encryption. This is a JWE with a single composite JSON Card object at the root with card as the claimset element. Required if a new card is added to the SRC profile. For details, see Generating a JWE for PAN Encryption . Format: JWE Card structure |
idToken |
(Conditional) A 3rd party federated identity token that allows the SRC systems to communicate with each other for SRC user identity verification. When a card is selected, it might be necessary to pass the ID token corresponding to the selected card, if this information is available in SRCi. Required when a consumer enters a new card, particularly in the following scenarios:
Format: The ID Token in JWT format |
windowRef |
(Conditional) The window handle to open a custom URI in the popup/iframe window. This window hosts the user interface. Required if open a custom URI in the popup or iframe window. This window hosts:
Format: window |
dpaTransactionOptions |
(Conditional) DPA configuration data, which overrides the configu ration on the SRC system that was created during DPA registration. Required if not supplied in the init call. Format: DpaTransactionOptions structure |
consumer |
(Conditional) Consumer identity or profile information collected by an SRCi, payment service provider, or merchant. Required when adding a new card. Format: Consumer structure. |
complianceSettings |
(Optional) Compliance settings that provide data needed for DCF suppression in the add card flow. Format: ComplianceSettings structure. |
authenticationContext Deprecated |
(Conditional) Transaction context data that SRC System uses to perform authentication; required for some Visa regions, such as Europe. Format: AuthenticationContext structure. |
authenticationMethod |
(Conditional) Authentication method indicated by the SRCi to the SRC System. Format: AuthenticationMethod structure. |
shippingAddress |
(Optional) Shipping address. Recommended when SRCi preference to perform authentication and to receive authentication data for the transaction is true; determined by the authenticatedCredentialRequested field in the dpaTransactionOptions structure. Format: Address structure. |
assuranceData |
(Optional) Information about any risk assessment operations performed by the SRC system. Format: AssuranceData structure. |
encryptedBillingAddress | (Optional) Billing address; it is recommended to include this field when a billing address has not been associated with the selected card. Format: JWE Address structure. |
Field |
Description |
---|---|
checkoutResponse |
The JWS of the checkout response. Format: JWS of Checkout Response. For details, see Authenticated Data Token for Checkout Response |
dcfActionCode |
Indicates the action code received from the DCF. Format: String, it is one of the following values:
|
unbindAppInstance |
Disassociates the consumer’s application and device from the consumer’s SRC profile on each network. Format: String, it is one of the following values:
|
idToken |
A token that allows the SRC systems to communicate with each other for SRC consumer identity verification; This SRC ID token should be discarded at the end of an SRC checkout transaction. Format: List of ID Tokens in JWT format |
Field |
Description |
---|---|
srcCorrelationId |
The unique identifier generated by SRC system to track and link SRC messages. This is used as a transaction identifier assigned by the SRC system for this particular transaction. Returned when cards are returned. Format: Universally Unique Identifier (UUID) |
srciTransactionId |
A unique transaction ID created by the SRCi, which may be created on the merchant page. It must be passed through to all networks (SRC systems) and DCFs. Format: Alphanumeric, maximum 100 characters |
maskedCard |
Masked card information. Format: MaskedCard structure. |
shippingAddressZip |
Zip code of the address being shipped to. The zip code must have been requested in DPA shipping preferences. Format: String |
shippingCountryCode |
Country code of the address being shipped to. The country must have been requested in the DPA shipping preferences. Format: Country Code2, ISO-3166-1, alpha-2 standard code Example: AU - Australia |
maskedConsumer |
Masked information about the consumer for display purposes. Format: MaskedConsumer structure. |
encryptedPayload |
Encrypted payload to be given to the merchant. It is returned only when PCI/PII data is requested by the DPA during a SRC transaction. Format: String |
assuranceData |
Information about any risk assessment operations performed by the SRC system. Format: AssuranceData structure. |
isGuestCheckout |
Whether the consumer checked out as a guest. Format: It is One of the following values:
|
isNewUser |
Whether the consumer enrolled during checkout in this transaction. Format: It is one of the following values:
|
{
"checkoutResponse": "eyJ...Q=",
"dcfActionCode": "COMPLETE",
"unbindAppInstance": false
}
{
"checkoutResponse": "eyJ..DQ",
{
"isnewuser": true,
"src_system_name": "VISA",
"cardBrand": "VISA"
},
"dcfActionCode": "COMPLETE"
}
The full checkout response includes the encrypted payload string, which provides the consumer’s information listed in the Payload chapter when the string is decrypted:
{
"srcCorrelationId": "023...02",
"srciTransactionId": "hIZ...u7",
"maskedCard": {
"srcDigitalCardId": "efb...02",
"panBin": "430753",
"panLastFour": "0008",
"panExpirationMonth": "12",
"panExpirationYear": "2023",
"digitalCardData": {
"status": "ACTIVE",
"presentationName": ". ",
"descriptorName": ". "
},
"dateofCardCreated": 1583133529903,
"dateofCardLastUsed": 1585274333914,
"maskedBillingAddress": {
"addressId": "e43. 02",
"countryCode": "US"
},
"eligible": true
},
"shippingAddressZip": "94404",
"shippingCountryCode": "US",
"maskedConsumer": {
"srcConsumerId": "H5p. A=",
"firstName": ". ",
"lastName": ". ",
"fullName": ". ",
"emailAddress": "xyz**@visa.com",
"mobileNumber": {},
"countryCode": "US",
"languageCode": "en-US",
"status": "ACTIVE"
},
"encryptedPayload": "eyJ. nA",
"assuranceData": {
"cardVerificationResults": "01"
},
"isGuestCheckout": false,
"isNewUser": false
}
The summary checkout response does not include the encrypted payload string.
{
"srcCorrelationId": "ed6...01",
"srciTransactionId": "5cc...8e",
"maskedCard": {
"srcDigitalCardId": "857...01",
"panBin": "400552",
"panLastFour": "3375",
"panExpirationMonth": "12",
"panExpirationYear": "2023",
"digitalCardData": {
"status": "ACTIVE",
"presentationName": "New Last",
"artUri": "https://sandbox.secure.checkout.visa.com/VmeCardArts/. png",
"artHeight": 105,
"artWidth": 164
},
"pendingEvents": [
"PENDING_CARDHOLDER_AUTHENTICATION",
"PENDING_CONSUMER_IDV",
"PENDING_CONSUMER_DEVICE_BINDING"
],
"dateofCardCreated": 1564445093245,
"dateofCardLastUsed": 1565813106869,
"maskedBillingAddress": {
"addressId": "5c4. 01",
"line1": "901*****",
"city": "*****",
"state": "CA",
"zip": "*****",
"countryCode": "US"
},
"eligible": true
},
"shippingAddressZip": "94404",
"shippingCountryCode": "US",
"maskedConsumer": {
"srcConsumerId": "H5p. uA=",
"firstName": "F*****",
"lastName": "L*****",
"fullName": "F***** L*****",
"emailAddress": "din**@visa.com",
"mobileNumber": {},
"countryCode": "US",
"languageCode": "en-US",
"status": "ACTIVE"
},
"assuranceData": {
"cardVerificationResults": "01"
},
"isGuestCheckout": false,
"isNewUser": false
}
3DS provides additional fields in the response.
"assuranceData": {
"verificationData": [
{
"methodResults": {
"transStatus": "Y",
"dsTransId": "06c...16",
"acsTransId": "6f5...09"
}
}
],
"eci": "05"
}
async function checkout(input, cb)
const promiseData = await vSrc.checkout(input)
.then(function (data) {
return data;
})
.catch(function (err) {
return err;
});
cb(promiseData);
}
function callCheckout() {
var checkoutInput = {}; // Check SDK Specs for input format checkout(checkoutInput, function (result) {
console.log(result);
// Check response for payload or for any errors
});
}
{
"srciActionCode": "",
"srcCorrelationId": "376...01",
"srciTransactionId": "ns9...WJ",
"srcDigitalCardId": "e83...01",
"encryptedCard": "",
"idToken": "eyJ...eA",
"windowRef": "",
"dpaTransactionOptions": {
"dpaLocale": "en_US",
"dpaAcceptedBillingCountries": [
"US",
"CA"
],
"dpaAcceptedShippingCountries": [
"US",
"CA"
],
"dpaBillingPreference": "FULL",
"dpaShippingPreference": "FULL",
"consumerNameRequested": true,
"consumerEmailAddressRequested": true,
"consumerPhoneNumberRequested": true,
"paymentOptions": {
"dynamicDataType": "CARD_APPLICATION_CRYPTOGRAM_LONG_FORM",
"dpaPanRequested": false
},
"reviewAction": "continue",
"checkoutDescription": "Sample checkout",
"transactionType": "PURCHASE",
"orderType": "REAUTHORIZATION",
"payloadTypeIndicator": "FULL",
"transactionAmount": {
"transactionAmount": "99.95",
"transactionCurrencyCode": "USD"
},
"merchantOrderId": "ABC12345",
"merchantCategoryCode": "...",
"merchantCountryCode": "US"
}
}
{
"srciActionCode": "",
"srcCorrelationId": "376...01",
"srciTransactionId": "ns9...WJ",
"srcDigitalCardId": "e83...01",
"encryptedCard": "",
"idToken": "eyJ...eA",
"windowRef": "",
"dpaTransactionOptions": {
"dpaLocale": "en_US",
"dpaAcceptedBillingCountries": [
"US",
"CA"
],
"dpaAcceptedShippingCountries": [
"US",
"CA"
],
"dpaBillingPreference": "FULL",
"dpaShippingPreference": "FULL",
"consumerNameRequested": true,
"consumerEmailAddressRequested": true,
"consumerPhoneNumberRequested": true,
"paymentOptions": {
"dynamicDataType": "CARD_APPLICATION_CRYPTOGRAM_LONG_FORM",
"dpaPanRequested": false
},
"reviewAction": "continue",
"checkoutDescription": "Sample checkout",
"transactionType": "PURCHASE",
"orderType": "REAUTHORIZATION",
"payloadTypeIndicator": "FULL",
"transactionAmount": {
"transactionAmount": "99.95",
"transactionCurrencyCode": "USD"
},
"merchantOrderId": "ABC12345",
"merchantCategoryCode": "...",
"merchantCountryCode": "US",
"merchantName": "Test Merchant",
"acquirerBIN": "455555",
"acquirerMerchantId": "12345678",
"authenticationPreferences": {
"authenticationMethods": [
{
"authenticationMethodType": "3DS",
"authenticationSubject": "CARDHOLDER",
"methodAttributes": {
"challengeIndicator": "01"
}
}
],
"payloadRequested": "AUTHENTICATED"
}
}
}
{
"srcCorrelationId": "376...01",
"srciTransactionId": "416...16",
"srcDigitalCardId": "",
"encryptedCard": "eyJ...mQ",
"idToken": "",
"windowRef": "",
"dpaTransactionOptions": {
"dpaLocale": "en_US",
"dpaAcceptedBillingCountries": [
"US",
"CA"
],
"dpaAcceptedShippingCountries": [
"US",
"CA"
],
"dpaBillingPreference": "FULL",
"dpaShippingPreference": "FULL",
"consumerNameRequested": true,
"consumerEmailAddressRequested": true,
"consumerPhoneNumberRequested": true,
"paymentOptions": {
"dynamicDataType": "CARD_APPLICATION_CRYPTOGRAM_LONG_FORM",
"dpaPanRequested": false
},
"reviewAction": "continue",
"checkoutDescription": "Sample checkout",
"transactionType": "PURCHASE",
"orderType": "REAUTHORIZATION",
"payloadTypeIndicator": "FULL",
"transactionAmount": {
"transactionAmount": "99.95",
"transactionCurrencyCode": "USD"
},
"merchantOrderId": "ABC12345",
"merchantCategoryCode": "...",
"merchantCountryCode": "US"
}
}
{
"srcCorrelationId": "376...01",
"srciTransactionId": "416...16",
"srcDigitalCardId": "",
"encryptedCard": "eyJ...mQ",
"idToken": "",
"windowRef": "",
"dpaTransactionOptions": {
"dpaLocale": "en_US",
"dpaAcceptedBillingCountries": [
"US",
"CA"
],
"dpaAcceptedShippingCountries": [
"US",
"CA"
],
"dpaBillingPreference": "FULL",
"dpaShippingPreference": "FULL",
"consumerNameRequested": true,
"consumerEmailAddressRequested": true,
"consumerPhoneNumberRequested": true,
"paymentOptions": {
"dynamicDataType": "CARD_APPLICATION_CRYPTOGRAM_LONG_FORM",
"dpaPanRequested": false
},
"reviewAction": "continue",
"checkoutDescription": "Sample checkout",
"transactionType": "PURCHASE",
"orderType": "REAUTHORIZATION",
"payloadTypeIndicator": "FULL",
"transactionAmount": {
"transactionAmount": "99.95",
"transactionCurrencyCode": "USD"
},
"merchantOrderId": "ABC12345",
"merchantCategoryCode": "...",
"merchantCountryCode": "US",
"merchantName": "Test Merchant",
"acquirerBIN": "455555",
"acquirerMerchantId": "12345678",
"authenticationPreferences": {
"authenticationMethods": [
{
"authenticationMethodType": "3DS",
"authenticationSubject": "CARDHOLDER",
"methodAttributes": {
"challengeIndicator": "01"
}
}
],
"payloadRequested": "AUTHENTICATED"
}
}
}
{
"card": {
"billingAddress": {
"addressId": "",
"name": "Firstname Lastname ",
"line1": "1 Streetname Street",
"line2": "",
"line3": "",
"city": "Miami",
"state": "FL",
"countryCode": "US",
"zip": "33126",
"createTime": "",
"lastUsedTime": ""
},
"cardSecurityCode": "099",
"cardholderFullName": "Firstname Lastname ",
"panExpirationMonth": 10,
"panExpirationYear": 2025,
"primaryAccountNumber": "...",
"cardholderFirstName": "Firstname",
"cardholderLastName": "Lastname",
"paymentAccountReference": ""
}
}
{
"consumer": {
"emailAddress": "test...@. com",
"consumerIdentity": {
"identityProvider": "SRC",
"identityType": "EMAIL_ADDRESS",
"identityValue": "test...@. com"
},
"mobileNumber": {
"phoneNumber": ". ",
"countryCode": "1"
},
"countryCode": "US",
"languageCode": "EN",
"firstName": "Psp",
"lastName": "Tester",
"fullName": "Psp Tester"
}
}
{
"srcCorrelationId": "",
"srciTransactionId": "c3a...9c",
"srcDigitalCardId": "",
"encryptedCard": "eyJ...Gw",
"idToken": "",
"windowRef": "",
"consumer": {
"emailAddress": "foi...r.com",
"consumerIdentity": {
"identityProvider": "SRC",
"identityType": "EMAIL_ADDRESS",
"identityValue": "foi...r.com"
},
"mobileNumber": {
"phoneNumber": "408...22",
"countryCode": "1"
},
"nationalIdentifier": "USA",
"countryCode": "US",
"languageCode": "EN",
"firstName": "PSP",
"lastName": "Tester",
"fullName": "Test"
},
"dpaTransactionOptions": {
"dpaLocale": "US",
"dpaAcceptedBillingCountries": [
"US",
"CA"
],
"dpaAcceptedShippingCountries": [
"US",
"CA"
],
"dpaBillingPreference": "FULL",
"dpaShippingPreference": "FULL",
"consumerNameRequested": true,
"consumerEmailAddressRequested": true,
"consumerPhoneNumberRequested": true,
"paymentOptions": {
"dpaDynamicDataTtlMinutes": 2,
"dynamicDataType": "CARD_APPLICATION_CRYPTOGRAM_LONG_FORM",
"dpaPanRequested": false
},
"reviewAction": "continue",
"checkoutDescription": "Sample checkout",
"transactionType": "PURCHASE",
"orderType": "REAUTHORIZATION",
"payloadTypeIndicator": "SUMMARY",
"transactionAmount": {
"transactionAmount": "99.95",
"transactionCurrencyCode": "USD"
},
"merchantOrderId": "ABC12345",
"merchantCategoryCode": "merchantCategoryCode",
"merchantCountryCode": "US"
},
"payloadTypeIndicatorCheckout": "SUMMARY",
"recipientIdCheckout": "",
"payloadTypeIndicatorPayload": "SUMMARY",
"recipientIdPayload": "",
"assuranceData": {
"verificationData": [
{
"verificationType": "CARDHOLDER",
"verificationEntity": "01",
"verificationMethod": "01",
"verificationResults": "01",
"verificationTimestamp": "1646416550"
}
]
},
"srciActionCode": "NEW_USER",
"complianceSettings": {
"complianceResources": [
{
"complianceType": "TERMS_AND_CONDITIONS",
"uri": "usa.visa.com/legal/checkout/terms-of-service.html"
},
{
"complianceType": "PRIVACY_POLICY",
"uri": "usa.visa.com/legal/global-privacy-notice.html"
},
{
"complianceType": "REMEMBER_ME",
"uri": "visa.checkout.com/privacy"
}
]
}
}
Reason Code |
Description |
---|---|
CARD_ADD_FAILED |
Unable to add card. |
CARD_SECURITY_CODE_MISSING |
Card security must be supplied. |
CARD_INVALID |
Invalid card number. |
CARD_EXP_INVALID |
Invalid card expiration date. |
CARDID_MISSING |
The card ID was required but is missing. |
CARD_NOT_RECOGNIZED |
The specified card was not recognized. |
ACCT_INACCESSIBLE |
The account exists but is not currently accessible, e.g., is locked. |
MERCHANT_DATA_INVALID |
Merchant data is invalid. |
UNABLE_TO_CONNECT |
Unable to connect to or launch card experience. |
AUTH_INVALID |
Invalid federated ID token. |
TERMS_AND_CONDITIONS_NOT_ACCEPTED |
Terms and conditions not accepted. |
IDENTITY_VALIDATION_REQUIRED | Consumer identity validation is required. |
Also, see Standard Error Codes.
Performs authentication using the selected card and returns authentication data.
authenticate()
Field |
Description |
---|---|
srcClientId |
(Optional) Reference identifier. Format: Universally Unique Identifier (UUID) |
serviceId |
(Optional) Service identifier associated to an SRC systemspecific configuration. Format: Universally Unique Identifier (UUID) |
srcCorrelationId |
(Optional) Correlation ID generated by the SRC system and returned by getSrcProfile. Format: Universally Unique Identifier (UUID) |
srciTransactionId |
(Required) A unique ID created by the SRCi Format: Alphanumeric, maximum 100 characters |
authenticationSessionId |
(Conditional) Authentication session ID. Required if available from a previously initiated authentication event. Format: String |
accountReference |
(Conditional) Account reference. Required if authenticationSessionId is not available. Format: An AccountReference structure. |
authenticationContext |
(Conditional) Transaction context data that SRC System uses to perform authentication. Required if authenticationSessionId is not available. Format: AuthenticationContext structure. |
authenticationMethod |
(Required) Authentication method indicated by the SRCi to the SRC System. Format: AuthenticationMethod structure. |
Field |
Description |
---|---|
srcCorrelationId |
The SRC Correlation ID returned by the SRC system Format: Universally Unique Identifier (UUID) |
srciTransactionId |
A unique ID created by the SRCi Format: Alphanumeric, maximum 100 characters |
authenticationResult |
Authentication status. Format: It is one of the following values:
|
authenticationStatus |
Authentication status. Format: It is one of the following values:
|
assuranceData |
Information about any risk assessment operations performed by the SRC system. Format: AssuranceData structure |
methodResults |
Method results. Format: JSON object |
{
"srciTransactionId": "c21...9e",
"srcCorrelationId": "de2...01",
"authenticationMethod": {
"authenticationMethodType": "EMAIL_OTP",
"authenticationSubject": "CARDHOLDER",
"methodAttributes": {
"otpValue": "553401",
"stepUpIdentifier": "MGE...="
}
}
}
{
"srcCorrelationId": "de2...01",
"srciTransactionId": "c21...9e",
"authenticationResult": "AUTHENTICATED",
"authenticationStatus": "COMPLETE",
"assuranceData": {
"verificationData": [
{
"verificationType": "CARDHOLDER",
"verificationEntity": "03",
"verificationEvents": [
"01"
],
"verificationMethod": "04",
"verificationResults": "01",
"verificationTimestamp": "1692781875"
}
]
}
Reason Code |
Description |
---|---|
ACCT_REF_FORMAT_UNSUPPORTED |
Unsupported accountReference |
ACCT_REF_MISSING |
The accountReference parameter is missing |
AUTHENTICATION_METHOD_ NOT_SUPPORTED |
The supplied authentication method doesn’t match the authenti cation context |
OTP_SEND_FAILED |
The OTP could not be sent to the recipient |
RETRIES_EXCEEDED |
The limit for the number of retries exceeded |
VAL_DATA_MISSING |
The validationData parameter is missing |
VAL_DATA_EXPIRED |
The validationData is expired |
VAL_DATA_INVALID |
The supplied validationData is invalid |
AUTHENTICATE_FAILURE |
Default error case for all other reasons of authenticate failure. |
Disassociates the Consumer application or Device from the Consumer’s SRC Profile.
unbindAppInstance(idToken)
Field |
Description |
---|---|
idToken |
The token ID returned by the checkout method that indicates which SRC Profile and SRC System the app instance should be unbound from. If not provided, the app instance will be unbound from the Visa SRC System. Format: ID Token in JWT format |
srcCorrelationId |
The SRC Correlation ID returned by the SRC system Format: Universally Unique Identifier (UUID) |
Field |
Description |
---|---|
recognized |
Whether the consumer is recognized. Format: It is one of the following values:
|
idTokens |
A token that allows the SRC systems to communicate with each other for SRC consumer identity verification; This SRC ID token should be discarded at the end of an SRC checkout transaction. Required if the consumer is recognized; Not need to be present if the consumer is not recognized. Format: List of ID Tokens in JWT format. |
{
"idToken": "eyJ...eA"
}
{
"srcCorrelationId": "1b3...01"
}
async function unbindAppInstance(input, cb) {
let promiseData = await vco.unbindAppInstance(input)
.then(function (data) {
return data;
})
.catch(function (err) {
return err;
});
cb(promiseData);
}
function callUnbind(idToken) {
unbindAppInstance(idToken, function (result) {
console.log(result); if (!result.error) {
// Prompt user that the device has been disassociated
} else {
// Prompt error
}
});
}
Reason Code |
Description |
---|---|
AUTH_INVALID |
Invalid federated ID token. |
ACCT_INACCESSIBLE |
The account exists but is not currently accessible, e.g. it is locked. |
An error response notifies the caller that the action relating to the promise has failed. Use the error.reason field to drive your error handling logic. Errors such as INVALID_PARAMETER or INVALID_REQUEST are considered integration errors.
Error reasons and messages appear in a standard error structure, which is returned when the API request could not be handled. For programmatic actions, you should only rely on the value in error.reason. Errors are also provided with a human readable error description in error.message field; however, this field should be used only to understand the problem. You may prefer to provide your own description based on the value in error.reason. In some cases, the error.details structure provides additional information.
Field |
Description |
---|---|
message |
The internal error message, which should not be displayed or used in the logic of your digital terminal; it is provided as a convenience. Format: String |
reason |
Mnemonic identifying the kind of error; use this field to trigger error handling logic in your digital terminal. Format: String |
details |
One or more pairs of field name and associated error message that identify validation errors. Format: details structure. |
The details structure provides additional information, if it is returned:
Field |
Description |
---|---|
location |
The value of this field uses an XPATH expression to point to the field that fails validation. Format: String |
message |
The specific error associated with the field. Format: String |
error {
"message": "Input parameters validation failed.", "reason": "INVALID_PARAMETER",
"details":
[// Optional structure, used with input data validation error
{// Types to specify the fields with errors "location": "creditCard",
"message": "Should be a numeric value"
}
]
}
API-specific error codes are listed in each API. All APIs can return the following standard error codes in addition to API-specific ones:
Reason |
Description |
---|---|
UNKNOWN_ERROR |
Unknown error. |
REQUEST_TIMEOUT |
Request timeout. |
SERVER_ERROR |
General server error |
INVALID_PARAMETER |
The value provided for one or more request parameters is considered invalid. This error is also generated in case of a missing required field. Typically, this is an integration error; whenever possible, should provide client-side validation to avoid a round trip to the server. For user errors, handle this error by prompting the user to change the value. |
INVALID_REQUEST |
The server could not interpret the request. Usually, these are the cases, when a data field has to be in a particular format but is not. Examples include:
The message field may provide additional clarification of what part or field of the request is considered incorrect. Please, refer to the API specification for the structure, format, and constraints on the API request. |
AUTH_ERROR |
The server understands the request, but cannot authenticate. |
NOT_FOUND |
The requested resource/business entity does not exist. The resource might also be hidden for security reasons. |
RATE_LIMIT_EXCEEDED |
Too many requests have been sent in a given amount of time. Intended for use with rate limiting schemes.
Retry delay in milliseconds = (2 ^ n) * 1000 + randomDelayMs, where n is your retry count, such as 0, 1, 2, 3, …, and random DelayMs is random delay in milliseconds, such as an integer between 0 and 1,000. |
SERVICE_ERROR |
An error occurred on the server. Either show a generic message, or retry the same request again (it might succeed). |
Payload provides metadata that includes the information based on if the consumer uses the PAN, or token.
Field |
Description |
---|---|
card |
Card data associated with the PAN used for the purchase. Supplied if the indicated payload type is FULL or PAYMENT and the SRC system determines that a PAN-based payload is returned. Note: Either a Card or a Payment Token credential is returned, never both Format: Card structure |
token |
Payment Token data associated with the PAN used for the purchase. Supplied if the indicated payload type is FULL or PAYMENT and the SRC system determines that a Payment Token- based payload is returned. Note: Either a Card or a Payment Token credential is returned, never both Format: PaymentToken structure |
paymentAccountReference |
The Payment Account Reference (PAR) associated with the cardholder account that uniquely identifies the account to which the payment card is associated. Format: String |
dynamicData |
Dynamic data (cryptograms) applicable for transactions. If Click to Pay facilitates Issuer Authentication (3DS), then CAVV will be provided in the dynamic data. Format: List of DynamicData structures |
billingAddress |
Billing address of the selected card. Format: Address structure |
shippingAddress |
Shipping address of the consumer; supplied when available, for example:
Format: Address structure |
consumer |
Consumer's information. Format: Consumer structure |
panExpirationYear |
The year when the account number is set to expire. Format: Numeric; 4 digits |
threeDsOutputData |
(Deprecated) Result of 3DS payment authentication. |
{
"card": {
"primaryAccountNumber": "430...08",
"panExpirationMonth": "12",
"panExpirationYear": "2023",
"cardholderFullName": ". ",
"cardholderFirstName": ". ",
"cardholderLastName": ". "
},
"billingAddress": {
"addressId": "e43. 02",
"countryCode": "US"
},
"shippingAddress": {
"addressId": "5c4. 01",
"line1": ". ",
"city": ". ",
"state": ". ",
"zip": ". ",
"countryCode": "US"
},
"consumer": {
"firstName": ". ",
"lastName": ". ",
"fullName": ". ",
"emailAddress": "[email protected]",
"mobileNumber": {},
"countryCode": "US",
"languageCode": "en-US"
},
"threeDsOutputData": []
}
{
"token": {
"paymentToken": "489...69",
"tokenExpirationMonth": "12",
"tokenExpirationYear": "2024"
},
"paymentAccountReference": "V00...23",
"dynamicData": [
{
"dynamicData": "AgA...A=",
"dynamicDataType": "CARD_APPLICATION_CRYPTOGRAM_LONG_FORM",
"dynamicDataExpiration": "Thu Jun 25 03:23:13 GMT 2020"
},
{
"dynamicDataValue": "Y2F...g=",
"dynamicDataType": "CARDHOLDER_AUTHENTICATION_CRYPTOGRAM"
}
],
"billingAddress": {
"addressId": "b3f...02",
"countryCode": "GB"
},
"shippingAddress": {
"addressId": "89e...01",
"line1": "...",
"city": "...",
"state": "ON",
"zip": "K1G 4B5",
"countryCode": "CA"
},
"consumer": {
"firstName": "...",
"lastName": "...",
"fullName": ". ",
"emailAddress": ". @gmail.com",
"mobileNumber": {},
"countryCode": "US",
"languageCode": "en-US"
},
"threeDsOutputData": []
}
3DS provides additional fields in the response.
"assuranceData": {
"verificationData": [
{
"methodResults": {
"transStatus": "Y",
"dsTransId": "06c...16",
"acsTransId": "6f5...09"
}
}
],
"eci": "05"
}
The following Java code, using the JOSE4j API jose4j-0.6.5.jar, provides an example of decrypting the payload.
package ...;
import java.security.MessageDigest;
import javax.crypto.spec.SecretKeySpec; import org.jose4j.jwe.JsonWebEncryption;
public class DecryptJWE {
public static String decryptJWE(String secret, String jwe) throws Exception {
MessageDigest md = MessageDigest.getInstance("SHA-256"); byte[] digest = md.digest(secret.getBytes("UTF-8"));
JsonWebEncryption jweDecryptor = new JsonWebEncryption(); jweDecryptor.setCompactSerialization(jwe); jweDecryptor.setKey(new SecretKeySpec(digest, "AES"));
return jweDecryptor.getPlaintextString();
}
}
var jose = require('node-jose'); var crypto = require('crypto');
module.exports = {
decryptJWE: function (secret, payload) {
return new Promise(function (resolve, reject) {
var SS_Hashed =
crypto.createHash('sha256').update(secret).digest('hex'); jose.JWK.asKey({
kty: 'oct', k: Buffer.from(SS_Hashed,
'hex')
})
.then(function (key) {
jose.JWE.createDecrypt(key)
.decrypt(payload)
.then(function (result) {
resolve(result);
})
.catch(function (error) {
reject(error);
});
})
.catch(function (error) {
reject(error);
});
});
}
};
This code snippet is used for creating PAN JWE on the browser side. This example uses the node-jose library in browserify format.
// getNodeJoseLib(); Get node-jose library in browserify format
// Code to generate JWE using node-jose library
/**
* @param kid kid for public certificate. Contact Visa representative for this value
* @param keys Public key to be used for encryption.
Contact Visa representative for *
@param payload Card information to be encrypted,
{"card":{ "primaryAccountNumber":"424..2", "panExpirationMonth":"10",
.."panExpirationYear":"2022", "cardSecurityCode":"123",
.."cardholderFullName":"cardholder name"}
}
* @param cb Returning encrypted PAN as JWE string to this callback function */
function generateJWE(kid, keys, payload, cb) {
const keyInput = {
"kty": "RSA",
"e": keys.e, // Public key exponent "kid": kid,
"use": "enc",
"n": keys.n, // Public key modulus "alg": "RSA-OAEP-256",
"ext_content": "payload"
};
jose.JWK.asKey(keyInput)
.then((key) => {
console.log("JWK ", JSON.stringify(key)); const contentAlg = 'A25..CM';
let options = {
format: 'compact',
contentAlg: contentAlg, fields: {
kid: key.kid, typ: 'JOSE',
iat: Date.now(), alg: key.alg, enc: contentAlg
}
};
jose.JWE.createEncrypt(options, key).update(payload).
final().then((serializedJWE) => {
console.log("Encrypted data: ", JSON.stringify(serializedJWE));
cb(serializedJWE);
}, (error) => {
console.log("Error occurred: ", error.message); cb(null);
});
}, (error) => {
console.log("Error occurred: ", error.message); cb(null);
})
}
The encryption key provided during onboarding is used to encrypt and decrypt payloads. JSON Web Encryption (JWE) content should be signed or encrypted using the shared secret that was provided to client at the time of onboarding.
Visa uses JSON Web Encryption (JWE) to encode sensitive field level information. Encrypted input parameters should be constructed before sending them in API requests.
Visa Installment Solutions APIs use the following naming convention for fields that require encryption in this document.
"enc<FIELD>" : "JWE ( ... ) "
See the complete specification for JWE: https://tools.ietf.org/html/draft-ietf-jose-json-web- encryption-40.
BASE64URL (UTF8 (JWE Header)) || ‘.’ ||
BASE64URL (JWE Encrypted Key) || ‘.’ || BASE64URL (JWE IV) || ‘.’ ||
BASE64URL (JWE Ciphertext) || ‘.’ || BASE64URL (JWE Authentication Tag)
The conventions are as follows:
Note: The JWE Protected Header is input as the AAD (Additional Authenticated Data) parameter of the authenticated encryption (AES-GCM) of the “text to encrypt”.
"header": {
"alg": "RSA-OAEP-256""typ": "JOSE",
"kid": "50charAPIKey", // API key "enc": "A256GCM"
}
"header": {
"alg": "AGCM256KW""typ": "JOSE",
"tag": "<128bitvalue>", // HMAC generated from applying AES-256-GCM-KW to the CEK
"kid": "50charAPIKey", // API key "enc": "AGCM256"
}
“encrypted_key”: “UghIOgu ... MR4gp_A=”, “iv”: “AxY8DctDa….GlsbGljb3RoZQ=”,
“ciphertext”: “KDlTthhZTGufMY…….xPSUrfmqCHXaI9wOGY=”, “tag”: “Mz-VPPyU4…RlcuYv1IwIvzw=”