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

« Previous Version 14 Current »

These objects are used in postMessage events between CruiseAPI and the merchant.

Profile Completed

The V1 and V2 profile completed objects are similar but V2 offers additional information about the data collection to allow merchants to make decisions based on the success or failure of certain data points. For example if we were unable to collect `CardinalData` the merchant could opt to send the 11 required fields on the `cmpi_lookup` request to ensure a 3DS 2.0 transaction can still complete.

ReturnUrl Response JWT Example -

{
  "iss": "5b7c5b922f3e733a44320e85",
  "iat": 1535052764,
  "exp": 1535059964,
  "jti": "83840924-a856-4901-ab21-0b61421c0933",
  "aud": "49e56790-a70b-11e8-9354-f715d5987f69",
  "Payload": {
    "ActionCode":"SUCCESS",
    "SessionId": "0_90de2cfc-f8c7-4793-b4fa-ddd841aa2be8",
    "DataSources": {
        "CardinalData": {
            "Attempted": true,
            "Completed": true
        },
        "MethodUrl": {
            "Attempted": true,
            "Completed": true
        }
    }
}
}

ReturnUrl Response Fields -

The ReturnUrl Response object is the Payload object of a collect response flow.

Field

Type

Description

ActionCode

String

The status of the collect attempt.

Possible Values:

  • SUCCESS

  • ERROR

DataSources

DataSources Object

Refer to the DataSources object for more details.

SessionId

String

The McsId generated for this request. This value should be used as the DFReferenceId the merchant sends to Centinel Core on the cmpi_lookup.

SessionId will be returned even if both CardinalData and Method URL do not complete.

DataSources

Field

Type

Description

CardinalData

Object

An object that describes the collection status of Cardinal data

MethodUrl

Object

An object that describes the collection status of MethodUrl

CardinalData Object

Field

Type

Description

Attempted

Boolean

Indicates whether or not the collected device data and an attempt was made to send it to Cardinal's server.

Completed

Boolean

Indicates whether or not the collected device data, was sent and successfully saved to Cardinal’s server.

MethodUrl Object

Field

Type

Description

Attempted

Boolean

Indicates whether a Method URL was found and attempted.

Completed

Boolean

Indicates whether we were notified of the Method URL completion.

  • No labels