iDEAL
iDEAL root resource, returns links to available iDEAL 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
resourceTree
A document showing possible interactions with the iDEAL API.
action:sale
Perform a iDEAL sale request.
action:query
Query a iDEAL event.
Retrieve the iDEAL top-level collection resource.
GEThttps://try.access.worldpay.com/payments/alternative/action/ideal
Copied!
{
"Authorization": "Basic auth",
"Content-Type": "application/vnd.worldpay.pay-action-v1+json",
"Accept": "application/vnd.worldpay.pay-action-v1+json"
}
{ "Authorization": "Basic auth", "Content-Type": "application/vnd.worldpay.pay-action-v1+json", "Accept": "application/vnd.worldpay.pay-action-v1+json" }
200
Copied!
{
"_links": {
"resourceTree": {
"href": "https://try.access.worldpay.com/rels/payments/alternative/action/ideal/resourceTree"
},
"action:sale": {
"href": "https://try.access.worldpay.com/payments/alternative/action/ideal/sale"
},
"action:query": {
"href": "https://try.access.worldpay.com/payments/alternative/action/ideal/query?transactionReference={transactionReference}&entity={entity}"
},
"curies": [
{
"href": "https://try.access.worldpay.com/rels/payments/alternative/action/ideal/{rels}",
"name": "ideal",
"templated": true
}
]
}
}
{ "_links": { "resourceTree": { "href": "https://try.access.worldpay.com/rels/payments/alternative/action/ideal/resourceTree" }, "action:sale": { "href": "https://try.access.worldpay.com/payments/alternative/action/ideal/sale" }, "action:query": { "href": "https://try.access.worldpay.com/payments/alternative/action/ideal/query?transactionReference={transactionReference}&entity={entity}" }, "curies": [ { "href": "https://try.access.worldpay.com/rels/payments/alternative/action/ideal/{rels}", "name": "ideal", "templated": true } ] } }