- Home
- All APIs
- Access Worldpay
- API reference
- Verified Tokens
Verified Tokens
Verify tokens root resource, returns links to available verifiedTokens 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
verifiedTokens:cardOnFile
Verify an account using a payment instrument if stored credentials are not required.
Retrieve the Verified tokens top-level collection resource.
GEThttps://try.access.worldpay.com/verifiedTokens
200
Copied!
{
"_links": {
"verifiedTokens:cardOnFile": {
"href": "https://try.access.worldpay.com/verifiedTokens/cardOnFile"
},
"verifiedTokens:sessions": {
"href": "https://try.access.worldpay.com/verifiedTokens/sessions"
},
"resourceTree": {
"href": "https://try.access.worldpay.com/rels/verifiedTokens/resourceTree.json"
},
"curies": [
{
"href": "https://try.access.worldpay.com/rels/verifiedTokens/{rel}.json",
"name": "verifiedTokens",
"templated": true
}
]
}
}
{ "_links": { "verifiedTokens:cardOnFile": { "href": "https://try.access.worldpay.com/verifiedTokens/cardOnFile" }, "verifiedTokens:sessions": { "href": "https://try.access.worldpay.com/verifiedTokens/sessions" }, "resourceTree": { "href": "https://try.access.worldpay.com/rels/verifiedTokens/resourceTree.json" }, "curies": [ { "href": "https://try.access.worldpay.com/rels/verifiedTokens/{rel}.json", "name": "verifiedTokens", "templated": true } ] } }