Checkout Notifications
The Create a Checkout Notification endpoint allows you to manually trigger a notification event for an existing checkout session. This is useful for resending payment confirmations, triggering downstream webhook consumers, or testing notification flows in your integration.
How It Works
1
Identify the checkout session
Note the checkoutId of the session you want to trigger a notification for. See Checkout Sessions for how to retrieve session IDs.
2
API Reference
Create a Checkout Notification
Authorizations
AuthorizationstringRequired
HTTP Basic authentication using entity credentials (username:password encoded in Base64).
Path parameters
checkoutIdstringRequired
Checkout ID
Body
Responses
default
Successful
application/json
stringOptional
post/v2/checkout/{checkoutId}/notification
POST /oidc/checkout-service/v2/checkout/{checkoutId}/notification HTTP/1.1
Host: emea.gsc.verifone.cloud
Authorization: Basic username:password
Content-Type: application/json
Accept: */*
Content-Length: 89
{
"notification_methods": {
"email": {
"email_address": "text"
},
"sms": {
"phone_number": "text"
}
}
}default
Successful
textLast updated
Was this helpful?
