Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

This is the Encrypted Data Exchange API endpoint for information on how to encrypt see our Data Exchange API integration guide. Included on this page are all the required fields and objects to run a registration check for either an enrollment or authentication flow using FIDO.

Connection URL’s

Request

Signature Number REQUIRED

A mathematical scheme for verifying the authenticity of digital messages or documents


TimeStamp String or Number REQUIRED

This value can be an ISO 8601 format or, Unix Epoch Time milliseconds in numeric format.

Example: 2024-07-21T17:32:28Z or, 1709659521000


Identifier String REQUIRED

API Key Identifier or Name value


OrgUnitId String REQUIRED

Processor/Merchant level OrgUnitId


Algorithm String REQUIRED

The hashing algorithm used to generate the Signature value. Valid options include:

  • SHA-256

  • SHA-512


Payload Object REQUIRED

The Payload containing fields and a payment object.

 Payload definitions

AccountNumber String REQUIRED

The account number to profile or the network tokens. Account number must be the full PAN of the cardholder between 13-19 digits.

Do not send a partial PAN in this field.


CardBrand String REQUIRED

Types of cards used for purchase. Currently VISA is the only supported card brand for FIDO.


ReferenceID String REQUIRED

A Cardinal generated identifier used to ensure that a data remains accurate during the various calls.


AcquirerCountryCode String REQUIRED

Issuers need to be aware of the acquirer's country code when the acquirer country differs from the merchant country. This field is required for a merchant acquiring in India and the European Economic Area (EEA).

This should be in alignment with ISO 3166-1


LanguagePreference Array REQUIRED

A list of preferred languages used during an authentication prompt. The preferred option will be the left most option.

Example:  ["en", "es"]


Email String REQUIRED

The cardholder’s email.


Payment Object REQUIRED

Contains payment fields.

 Payment Object (Within Payload Object)

Amount String REQUIRED

The total transaction amount with decimalization.


CurrencyCode String REQUIRED

A 3-digit alpha ISO 4217 currency code for the sale amount.


MerchantName String REQUIRED

The name of the merchant requesting the FIDO transaction. This value will be presented to the merchant during the authentication step.

 {
   "Signature": "KmL2SLBeTRRU9TlxA6XfnAYg5yWn1QwEO0GL1RtP8mg=",
   "Timestamp": "2024-02-21T20:10:20.872Z",
   "Identifier": "59c282d02f3e7357b4aa6f13",
   "OrgUnitId": "59c2745f2f3e7357b4aa516a",
   "Algorithm": "SHA-256",
   "Payload": {
      "AccountNumber": "400009******0800",
      "CardBrand":"Visa",
      "ReferenceId": "12345-1234-123145-1423",
      "AcquirerCountryCode": "840",
      "LanguagePreference": ["en", "es"],
      "Email": "someone@somewhere.com",
      "Payment": {
        "Amount": "12.34",
        "CurrencyCode": "USD",
        "MerchantName": "Amazon",
      }
   }
}

Response

ErrorNumber String REQUIRED

An identifier of who is issuing the JWT. Used to contain the Api Key identifier or name.


Error Description String REQUIRED

Processor/Merchant level OrgUnitId


RequestId String REQUIRED

The session identifier for the merchant to pass on all subsequent requests.


Payload Object REQUIRED

The Payload containing fields and a payment object

 Payload Details

Account Object REQUIRED

Indicates information related to the Account.


Issuer Object REQUIRED

Indicates information related to the Issuer.


ReferenceId String REQUIRED

This identifier represents the DeviceDataCollection session that has been started and must be passed in the Authentication JWT when invoking the DeviceDataCollectionUrl.


 Account Object Details

CardBrand String REQUIRED

Types of cards used for purchase. Currently VISA is the only supported card brand for FIDO.


LastFour String REQUIRED

Unformatted total transaction amount without any decimalization.


FIDO Object CONDITIONAL

An object with FIDO specific fields

Required for FIDO transactions

 FIDO Object Details (within Account Object)

FlowType String REQUIRED

Indicates the flow type of the FIDO process with three possible values:

  • ENROLLMENT- Move forward with a 3DS authentication to continue the enrollment flow.

  • AUTHENTICATION- Move forward with FIDO authentication by running the /FIDO/Challenge request.

  • FAILURE- Move forward with 3DS authentication without FIDO.


ReasonCode String CONDITIONAL

The error code for the FIDO attempt. Only returned in an error scenario


ReasonDescription String CONDITIONAL

The error description for the FIDO attempt. Only returned in an error scenario

 Issuer Object

SupportedVersions Array of Objects CONDITONAL

Indicates what EMV 3DS versions are supported by the Issuer, and what authentication options are supported for each listed version name.


SupportedVersions.Version String CONDITONAL

Specifies all the active 3DS protocol versions supported by the Issuer ACS.


SupportedVersions.Capabilities Array CONDITONAL

Provides information for each capabilities array, which indicates the authentication options an Issuer supports for the given EMV 3DS version.


SupportedVersions.MethodURLPresent Object CONDITONAL

Indicates whether there is a 3DS Method associated with the Issuer Range

In case, MethodUrlPresent flag returns ‘false’, merchant can choose to skip the /Collect call if they are able to capture the required browser fields themselves and directly proceed with the Lookup Request.

 {
    "ErrorNumber": 0,
    "ErrorDescription": "Success",
    "RequestId": "b3933183-48df-409f-94ff-12952364009b",
    "Payload": {
        "Account": {
            "CardBrand": "Visa",
            "LastFour": "0094",
            "FIDO": {
                "FlowType": "ENROLLMENT", 
                "ReasonCode": "1001",
                "ReasonDescription": "Error"
            }
        },
        "Issuer": {
            "SupportedVersions": [
                {
                    "Version": "2.1.0",
                    "Capabilities": [
                        "AuthenticationAvailableAtACS",
                        "DAF"
                    ],
                    "MethodURLPresent": true
                },
                {
                    "Version": "2.2.0",
                    "Capabilities": [
                        "AuthenticationAvailableAtACS",
                        "DecoupledAuthentication",
                        "DataOnly",
                        "DelegatedAuthentication",
                        "IssuerTRA",
                        "DAF"
                    ],
                    "MethodURLPresent": true
                }
            ]
        },
        "ReferenceId": "51ca6679-12ed-47c4-8982-1a29e10d4587"
    }
}
  • No labels