Retrieve payment status by context id and paymentProcessAuditId
GET /[context]/[contextId]/PaymentStatusCheck?paymentProcessAuditAdyenId=[paymentProcessAuditAdyenId]
Context in Request URI should be 'bookings' or 'customers'
ContextId in Request URI should be Booking ID or Customer ID
Adyen ID of the payment process audit record created when the payment was processed. This is used to retrieve payment status for a specific payment process audit record in Payment Status Check endpoint
List of Payment Statuses
Adyen payment process audit ID
Status of the payment
Adyen payment type for payment
Failure message if payment was unsuccessful
{
"paymentStatuses": [
{
"paymentProcessAuditAdyenId": 123456,
"paymentStatus": "pending",
"adyenPaymentType": "payto",
"failureMessage": "Payment failed due to insufficient funds"
},
{
"paymentProcessAuditAdyenId": 123456,
"paymentStatus": "pending",
"adyenPaymentType": "payto",
"failureMessage": "Payment failed due to insufficient funds"
}
]
}