--- title: "Japanese convenience stores Drop-in integration" description: "Add payments through Japanese convenience stores to an existing Drop-in integration." url: "https://docs.adyen.com/payment-methods/econtext-konbini/web-drop-in" source_url: "https://docs.adyen.com/payment-methods/econtext-konbini/web-drop-in.md" canonical: "https://docs.adyen.com/payment-methods/econtext-konbini/web-drop-in" last_modified: "2026-05-24T12:54:31+02:00" language: "en" --- # Japanese convenience stores Drop-in integration Add payments through Japanese convenience stores to an existing Drop-in integration. [View source](/payment-methods/econtext-konbini/web-drop-in.md) This page explains how to add Japanese convenience stores to your existing Web Drop-in integration. ## Requirements | Requirement | Description | | -------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | **Integration type** | Make sure that you have built your [Drop-in integration](/online-payments/build-your-integration/sessions-flow?platform=Web\&integration=Drop-in%2F%3Ftarget%3D_blank). | | **Setup steps** | Before you begin:- [Add **eContext Convenience Stores** in your Customer Area](/payment-methods/add-payment-methods) to support payments made through Lawson, Mini Stop, Family Mart, and Seicomart. - [Add **eContext PayEasy ATM** in your Customer Area](/payment-methods/add-payment-methods) to support ATM payments made through Pay-easy. - [Add **eContext PayEasy Online Banking** in your Customer Area](/payment-methods/add-payment-methods) to support online payments made through Pay-easy. - [Add **eContext 7Eleven** in your Customer Area](/payment-methods/add-payment-methods) to support payments made through 7-Eleven. | ## Import resources for v6 If you are using Web Drop-in v6, import the resources you need for Japanese convenience stores: ```js import { AdyenCheckout, Econtext} from '@adyen/adyen-web' ``` ## API reference You do not need to send additional fields for Japanese convenience stores. To see optional fields that you can send for all payment methods, choose the endpoint you integrated: * [/sessions](https://docs.adyen.com/api-explorer/Checkout/latest/post/sessions): This is the default with [Drop-in v5.0.0](/online-payments/build-your-integration/sessions-flow?platform=Web\&integration=Drop-in) or later. * [/payments](https://docs.adyen.com/api-explorer/Checkout/latest/post/payments): If you implemented an [additional use case](/online-payments/build-your-integration). ## Drop-in configuration ### Required configuration There are no configuration steps specific to Japanese convenience stores required for Drop-in. ### Optional configuration You can add the following optional configuration: | Parameter name | Description | Default | | ------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -------- | | `personalDetailsRequired` | Set to **false** to hide the input fields for shopper name, email, and telephone number. Added in [v5.2.0](/online-payments/release-notes?integration_type=web\&version=5.2.0) | **true** | If you want to add optional configuration, include this in a configuration object. The following example shows how to configure Drop-in to hide the input fields for shopper name, email, and telephone number: ```js const konbiniConfiguration = { personalDetailsRequired: false // Optional. Set to **false** to hide the input fields for shopper name, email, and telephone number. }; ``` Include the `konbiniConfiguration` object when [creating a configuration object for Drop-in](/online-payments/build-your-integration/sessions-flow?platform=Web\&integration=Drop-in#create-instance): **AdyenCheckout configuration** ```js const dropinConfiguration = { // ... other required configuration paymentMethodsConfiguration: { econtext_stores: konbiniConfiguration } }; ``` Pass the Drop-in configuration object when you mount the instance of Drop-in: **Pass the Drop-in configuration object** ```js // Create an instance of AdyenCheckout. const checkout = await AdyenCheckout(checkoutConfiguration); // Pass the Drop-in configuration object that you created. const dropin = new Dropin(checkout, dropinConfiguration).mount(#konbini-container) ``` ## Test and go live 7-Eleven voucher payments can only be tested in the live environment. Contact our [Support Team](https://ca-test.adyen.com/ca/ca/contactUs/support.shtml?form=other) to set up 7-Eleven on the live environment for penny testing. To test your integration, use the econtext simulator to complete voucher payments in Japanese convenience stores: 1. Log in to the [econtext Simulator](https://form.int.econ.ne.jp/paynotice) using the following credentials: * Username: `ectest` * Password: `#Gwecn25` 2. In the first box, provide **742001** as the shopID. 3. In the second box, provide the acquirer reference following the format below: * **\-262320-econtext\_stores**\ For example, **DZ4DPSHB4WD2WN82-262320-econtext\_stores**\ Get the `pspReference` from the webhook message with `eventType`: **AUTHORISATION**. 4. In the third box you select what you want to test. * Leave as default for Convenience Stores. * Select **セブンイレブン** for 7-Eleven. * Select **Pay-easy(Bank Name)** for Pay-easy ATM and Pay-easy Online Banking. 5. Leave the fourth box (入金日時, the time of payment) empty. 6. Click **送信** (Submit). 7. Wait for 15 minutes for the webhook. Check the status of voucher payments in the test environment in your [Customer Area](https://ca-test.adyen.com/): * Vouchers that are pending or that have expired are under **Transactions** > **Offers**. * Vouchers that have been paid are under **Transactions** > **Payments**. Before you can accept payments through Japanese convenience stores in live environment, you need to [submit a request to add 7-Eleven or other Japanese convenience stores](/payment-methods/add-payment-methods) in your [live Customer Area](https://ca-live.adyen.com/). ## See also * [Web Drop-in integration guide](/online-payments/drop-in-web) * [Webhooks](/development-resources/webhooks) * [API Explorer](https://docs.adyen.com/api-explorer/#/CheckoutService/latest/overview)