- Home
- All APIs
- Access Worldpay
- API reference
- Verifications
Verifications
Verifications root resource, returns links to available Account Verifications 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
verifications:oneTime
Verify an account using a payment instrument if stored credentials are not required.
verifications:cardOnFile
Verify an account using a payment instrument if cardOnFile payment stored credentials are required.
verifications:recurring
Not in use.
verifications:dynamicOneTime
Verify an account using a specified amount if stored credentials are not required.
verifications:dynamicCardOnFile
Verify an account using a specified amount if cardOnFile payment stored credentials are required.
verifications:dynamicRecurring
Not in use.
resourceTree
A document showing possible interactions with the Verifications API.
Retrieve the Verifications top-level collection resource.
GEThttps://try.access.worldpay.com/verifications/accounts
Copied!
{
"Authorization": "Basic Auth",
"Accept": "application/vnd.worldpay.verifications.accounts-v5+json"
}
{ "Authorization": "Basic Auth", "Accept": "application/vnd.worldpay.verifications.accounts-v5+json" }
200
Copied!
{
"_links": {
"resourceTree": {
"href": "https://try.access.worldpay.com/rels/verifications/accounts/resourceTree"
},
"verifications:oneTime": {
"href": "https://try.access.worldpay.com/verifications/accounts/intelligent/oneTime",
"templated": true
},
"verifications:cardOnFile": {
"href": "https://try.access.worldpay.com/verifications/accounts/intelligent/cardOnFile",
"templated": true
},
"verifications:recurring": {
"href": "https://try.access.worldpay.com/verifications/accounts/intelligent/recurring",
"templated": true
},
"verifications:dynamicOneTime": {
"href": "https://try.access.worldpay.com/verifications/accounts/dynamic/oneTime",
"templated": true
},
"verifications:dynamicCardOnFile": {
"href": "https://try.access.worldpay.com/verifications/accounts/dynamic/cardOnFile",
"templated": true
},
"verifications:dynamicRecurring": {
"href": "https://try.access.worldpay.com/verifications/accounts/dynamic/recurring",
"templated": true
},
"verifications:verification": {
"href": "https://try.access.worldpay.com/verifications/accounts/{resource}",
"templated": true
},
"verifications:ach": {
"href": "https://try.access.worldpay.com/verifications/accounts/ach",
"templated": true
},
"curies": [
{
"name": "verifications",
"href": "https://try.access.worldpay.com/rels/verifications/accounts/{rel}",
"templated": true
}
]
}
}
{ "_links": { "resourceTree": { "href": "https://try.access.worldpay.com/rels/verifications/accounts/resourceTree" }, "verifications:oneTime": { "href": "https://try.access.worldpay.com/verifications/accounts/intelligent/oneTime", "templated": true }, "verifications:cardOnFile": { "href": "https://try.access.worldpay.com/verifications/accounts/intelligent/cardOnFile", "templated": true }, "verifications:recurring": { "href": "https://try.access.worldpay.com/verifications/accounts/intelligent/recurring", "templated": true }, "verifications:dynamicOneTime": { "href": "https://try.access.worldpay.com/verifications/accounts/dynamic/oneTime", "templated": true }, "verifications:dynamicCardOnFile": { "href": "https://try.access.worldpay.com/verifications/accounts/dynamic/cardOnFile", "templated": true }, "verifications:dynamicRecurring": { "href": "https://try.access.worldpay.com/verifications/accounts/dynamic/recurring", "templated": true }, "verifications:verification": { "href": "https://try.access.worldpay.com/verifications/accounts/{resource}", "templated": true }, "verifications:ach": { "href": "https://try.access.worldpay.com/verifications/accounts/ach", "templated": true }, "curies": [ { "name": "verifications", "href": "https://try.access.worldpay.com/rels/verifications/accounts/{rel}", "templated": true } ] } }