Last Updated: 13 November 2024 | Change Log
Manage your APM
An overview on how to get the latest payment status and how to reverse (cancel or refund) and settle payments.
Get payment status
There are two ways to get the payment status. You can either query the payment or setup webhooks to receive the latest event from us.
Query payment
Make a GET request on the links:self
action link returned in your payment response.
GET
https://try.access.worldpay.com/apmPayments/3Ihrz_xFV1nTRAHhJABserDF09eNdqnSHh2H8qlv7QIZ4iW8JjMy1wo4b2GozzFtfnOUMIZGm4eSqTixJe1tGDzD3
No request body is needed for this request.
You receive:
- an HTTP code 200
- the
lastEvent
for your query request - links to available next actions for your payment
Example Query Response
Possible lastEvent
values
authorized
cancelFailed
cancelled
cancelledByCustomer
cancelRequested
chargebackReversed
chargedBack
disputeExpired
disputeFundsHeld
disputeFundsReleased
disputeReserveReleased
disputeInformationRequested
disputInformationSupplied
error
expired
manuallyAmended
miscellaneous
pending
refunded
refundExpired
refundFailed
refundReversed
refused
refusedByIssuer
sentForRefund
sentForSettlement
settled
settlementReversed
settlementFailed
signedFormReceived
unknown
Events
To use our webhooks take a look at our events documentation.
Settle
Make a settle request to settle an authorized payment.
Not all APMs support the settle request. Please refer to the individual APM documentation to understand if this action is supported for the APM.
POST
https://try.access.worldpay.com/apmPayments/3Ihrz_xFV1nTRAHhJABserDF09eNdqnSHh2H8qlv7QIZ4iW8JjMy1wo4b2GozzFtfnOUMIZGm4eSqTixJe1tGDzD3/settlements
No request body is needed for this request.
Reverse
Your reverse request is processed as a cancel or refund request. This depends on the time passed after your payment request was completed.
- an
authorized
payment status =cancel
- a
settled
orsentForSettlement
payment status =refund
POST to the links:reverse
action link returned in your query response or append the payments "id" to the reverse url template.
POST
https://access.worldpay.com/apmPayments/3Ihrz_xFV1nTRAHhJABserDF09eNdqnSHh2H8qlv7QIZ4iW8JjMy1wo4b2GozzFtfnOUMIZGm4eSqTixJe1tGDzD3/reversals
Full Reverse
Send a reverse request to return the full amount of the payment to your customer.
No request body is needed for this request.
Partial Reverse
Send a partial reverse request to return a portion of the payment amount to your customer.
Example partial request
{ "reference": "0-128characters", "value": { "amount": 25, "currency": "GBP" } }