3DS root resource, returns links to available actions.
Methods
GET
Retrieve links to next available actions.
Responses
Response schema
Copied!
{
"type": "object",
"properties": {
"_links": {
"type": "object",
"format": "hal+json"
}
},
"required": [
"_links"
]
}
{ "type": "object", "properties": { "_links": { "type": "object", "format": "hal+json" } }, "required": [ "_links" ] }
Examples
Link relationship
3ds:deviceDataInitialize
Generate required data for 3DS Device Data Collection
Retrieve the 3ds top-level collection resource.
GEThttps://try.access.worldpay.com/verifications/customers/3ds
Copied!
{
"Authorization": "Basic auth",
"Content-Type": "application/vnd.worldpay.verifications.customers-v3.hal+json"
}
{ "Authorization": "Basic auth", "Content-Type": "application/vnd.worldpay.verifications.customers-v3.hal+json" }
200
Copied!
{
"_links": {
"3ds:deviceDataInitialize": {
"href": "https://try.access.worldpay.com/verifications/customers/3ds/deviceDataInitialization"
},
"resourceTree": {
"href": "https://try.access.worldpay.com/verifications/customers/3ds/resourceTree"
},
"curies": [
{
"href": "https://try.access.worldpay.com/rels/verifications/customers/3ds/{rel}",
"name": "3ds",
"templated": true
}
]
}
}
{ "_links": { "3ds:deviceDataInitialize": { "href": "https://try.access.worldpay.com/verifications/customers/3ds/deviceDataInitialization" }, "resourceTree": { "href": "https://try.access.worldpay.com/verifications/customers/3ds/resourceTree" }, "curies": [ { "href": "https://try.access.worldpay.com/rels/verifications/customers/3ds/{rel}", "name": "3ds", "templated": true } ] } }