- Home
- All APIs
- Access Worldpay
- API reference
- Verified Payments
Verified Payments
Verified Payments root resource, returns links to available actions. (coming soon)
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
verifiedPayments:verifiedPayment
Send a payment request
Retrieve the Verified Payments top-level collection resource.
GEThttps://try.access.worldpay.com/verifiedPayments
Copied!
{
"Authorization": "Basic auth",
"Content-Type": "application/vnd.worldpay.verifiedpayments-v1.hal+json"
}
{ "Authorization": "Basic auth", "Content-Type": "application/vnd.worldpay.verifiedpayments-v1.hal+json" }
200
Copied!
{
"_links": {
"verifiedPayments:verifiedPayment": {
"href": "https://try.access.worldpay.com/verifiedPayments"
},
"resourceTree": {
"href": "https://try.access.worldpay.com/verifiedPayments/resourceTree"
},
"curies": [
{
"href": "https://try.access.worldpay.com/rels/verifiedPayments/{rel}",
"name": "verifiedPayments",
"templated": true
}
]
}
}
{ "_links": { "verifiedPayments:verifiedPayment": { "href": "https://try.access.worldpay.com/verifiedPayments" }, "resourceTree": { "href": "https://try.access.worldpay.com/verifiedPayments/resourceTree" }, "curies": [ { "href": "https://try.access.worldpay.com/rels/verifiedPayments/{rel}", "name": "verifiedPayments", "templated": true } ] } }