The purpose of this query is to retrieve the Checkout Payment Url for further process
Sample query
query getPaymentNotification{
getPaymentNotification{
message{
... on PaymentNotification3DSMessage{
error
redirectURL
}
}
}
}
Sample response
{
"data": {
"getPaymentNotification": {
"message": {
"error": "",
"redirectURL": "https://api.sandbox.checkout.com/sessions-interceptor/sid_z54gw5ba5ijevgl2ts3a5hugdm"
}
}
}
}
Name | Type | Description |
---|---|---|
redirectURL | String | URL for make payments |
error | String | Error if any |