Verify

Verify the 3DS challenge response

Methods

POST

Verify the 3DS challenge response

Request

Copied!
{
 "type": "object",
 "required": [
  "transactionReference",
  "challenge",
  "merchant"
 ],
 "properties": {
  "transactionReference": {
   "type": "string",
   "minLength": 1,
   "maxLength": 64,
   "pattern": "^[-A-Za-z0-9_!@#$%()*=.:;?\\[\\]{}~`/+]*$"
  },
  "merchant": {
   "type": "object",
   "required": [
    "entity"
   ],
   "properties": {
    "entity": {
     "type": "string",
     "minLength": 1,
     "maxLength": 64,
     "pattern": "^[A-Za-z0-9 ]*$"
    }
   }
  },
  "challenge": {
   "type": "object",
   "required": [
    "reference"
   ],
   "properties": {
    "reference": {
     "type": "string",
     "minLength": 20,
     "maxLength": 20,
     "pattern": "(^[A-Za-z0-9]*$)"
    }
   }
  }
 }
}

Responses

Examples

POST
 An example of a 3DS Verification request
View
post
 An example of a 3DS Verification request 
POSThttps://try.access.worldpay.com/verifications/customers/3ds/verification
Copied!
{
  "Authorization": "Basic dXNlcjE6cGFzc3dvcmQ=",
  "Content-Type": "application/vnd.worldpay.verifications.customers-v3.hal+json"
}
Copied!
{
  "transactionReference": "sRMPWCQoQrEiVxehTnu0",
  "merchant": {
    "entity": "entity1"
  },
  "challenge": {
    "reference": "uniqueChallengeRef12"
  }
}

200

Copied!
{
  "Content-Type": "application/vnd.worldpay.verifications.customers-v3.hal+json"
}
Copied!
{
  "outcome": "authenticated",
  "transactionReference": "sRMPWCQoQrEiVxehTnu0",
  "authentication": {
    "version": "1.0.2",
    "authenticationValue": "MAAAAAAAAAAAAAAAAAAAAAAAAAA=",
    "eci": "05",
    "transactionId": "k4Vf36ijnJX54kwHQNqUr8"
  },
  "_links": {
    "curies": [
      {
        "href": "https://try.access.worldpay.com/rels/verifications/customers/3ds/{rel}",
        "templated": true,
        "name": "3ds"
      }
    ],
    "3ds:authenticate": {
      "href": "authenticate"
    },
    "3ds:verify": {
      "href": "authenticate/verify"
    }
  }
}