| title | PaymentManager: enableDelegations() method | |
|---|---|---|
| short-title | enableDelegations() | |
| slug | Web/API/PaymentManager/enableDelegations | |
| page-type | web-api-instance-method | |
| status |
|
|
| browser-compat | api.PaymentManager.enableDelegations |
{{APIRef("Web-Based Payment Handler API")}}{{SeeCompatTable}}{{SecureContext_Header}}
The enableDelegations() method of the {{domxref("PaymentManager")}} interface delegates responsibility for providing various parts of the required payment information to the payment app rather than collecting it from the browser (for example, via autofill).
For example, if the requestShipping option is set to true in the options object when invoking the {{domxref("PaymentRequest.PaymentRequest", "PaymentRequest()")}} constructor, a shipping address will be returned.
- If
enableDelegations()was used to delegateshippingAddress, that address will come from the payment app. - If not, it will come from the browser autofill.
enableDelegations(delegations)
delegations{{optional_inline}}- : An array containing one or more enumerated values that specify the payment information you want to delegate to the payment app. Possible values can be:
payerEmail- : The payment app will provide the payer's email whenever it is needed.
payerName- : The payment app will provide the payer's name whenever it is needed.
payerPhone- : The payment app will provide the payer's phone number whenever it is needed.
shippingAddress- : The payment app will provide the shipping address whenever it is needed.
- : An array containing one or more enumerated values that specify the payment information you want to delegate to the payment app. Possible values can be:
A {{jsxref("Promise")}} that resolves with a value of undefined.
navigator.serviceWorker.register("serviceworker.js").then((registration) => {
registration.paymentManager.userHint = "Card number should be 16 digits";
registration.paymentManager
.enableDelegations(["shippingAddress", "payerName"])
.then(() => {
// …
});
// …
});{{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