| title | ServiceWorkerGlobalScope: paymentrequest event | |
|---|---|---|
| short-title | paymentrequest | |
| slug | Web/API/ServiceWorkerGlobalScope/paymentrequest_event | |
| page-type | web-api-event | |
| status |
|
|
| browser-compat | api.ServiceWorkerGlobalScope.paymentrequest_event |
{{APIRef("Web-Based Payment Handler API")}}{{SeeCompatTable}}{{SecureContext_Header}}{{AvailableInWorkers("service")}}
The paymentrequest event of the {{domxref("ServiceWorkerGlobalScope")}} interface is fired on a payment app when a payment flow has been initiated on the merchant website via the {{domxref("PaymentRequest.show()")}} method.
Use the event name in methods like {{domxref("EventTarget.addEventListener", "addEventListener()")}}, or set an event handler property.
addEventListener("paymentrequest", (event) => { })
onpaymentrequest = (event) => { }
A {{domxref("PaymentRequestEvent")}}. Inherits from {{domxref("ExtendableEvent")}}.
{{InheritanceDiagram("PaymentRequestEvent")}}
When the {{domxref("PaymentRequest.show()")}} method is invoked, a paymentrequest event is fired on the service worker of the payment app. This event is listened for inside the payment app's service worker to begin the next stage of the payment process.
let paymentRequestEvent;
let resolver;
let client;
// `self` is the global object in service worker
self.addEventListener("paymentrequest", async (e) => {
if (paymentRequestEvent) {
// If there's an ongoing payment transaction, reject it.
resolver.reject();
}
// Preserve the event for future use
paymentRequestEvent = e;
// …
});When a paymentrequest event is received, the payment app can open a payment handler window by calling {{domxref("PaymentRequestEvent.openWindow()")}}. The payment handler window will present the customers with a payment app interface where they can authenticate, choose shipping address and options, and authorize the payment.
When the payment has been handled, {{domxref("PaymentRequestEvent.respondWith()")}} is used to pass the payment result back to the merchant website.
See Receive a payment request event from the merchant for more details of this stage.
{{Specifications}}
{{Compat}}
- {{domxref("Web-based Payment Handler API", "", "", "nocode")}}
- Web-based payment apps overview
- Setting up a payment method
- Life of a payment transaction
- Using the Payment Request API
- Payment processing concepts