Docs
DocsAPI ExplorerChangelog

Seller Merchant Onboarding

Updated on March 26, 2026
View as Markdown

Get started

As a Platform Merchant (Platform Business), you are required to register a "Seller Merchant" account for each of your sellers/users via our APIs.

Key prerequisites:

  1. We only accept Japanese entities (both Corporation and Sole Proprietorship) to register a Seller Merchant account.
  2. Seller Merchant must have a Japanese Bank Account to receive payouts in JPY from KOMOJU.

1) Create a Seller Merchant account

Request Merchant: Create API to create a Seller Merchant account with platform_role set to seller.

Shell
curl -X POST https://komoju.com/api/v1/merchants \
-u <platform merchant secret key>: \
-d name='New Seller Merchant 1' \
-d platform_role="seller"
Request AttributeTypeDescription
namestringSeller Merchant's name
platform_roledropdownThe role of sub-merchant account. Please specify it as seller here.

2. Query the seller merchant's live_application for required fields

Request Live Application: Show API with seller merchant's uuid you received from the previous step.

Shell
curl -X GET https://komoju.com/api/v1/live_application/{id}?locale=en \
-u platform_merchant_secret_key:

Response example

JSON
{
    "merchant_id": "5td723eoi9txn8sj545ww2mv1",
    "status": "incomplete",
    "payments_enabled": false,
    "payouts_enabled": false,
    "requested_fields": [
        {
            "field_type": "phone_number",
            "field": "company_information.company_phone",
            "field_name": "Company Phone",
            "field_properties": {
                "minLength": 1,
                "pattern": "^([() \\-_+]*[0-9]){10}[() \\-_+0-9]*$"
            },
            "optional": false
        },
      	...
    ],
    "newly_requested_fields": [],
    "errored_fields": []
}

Within the requested_fields array, you'll find the required information for Seller Merchant registration. If a field's optional parameter is set to false, the Seller Merchant must provide the relevant information. If set to true, they can skip it if they don't have the corresponding details.

Following is the breakdown of each field property.

JSON
"field": "visa_mastercard_credit_card.access_restrictions",
"field_name": "Implemented (to be implemented)",
"field_description": "Restrict IP addresses accessible to administrators; if IP addresses cannot be restricted, set access restrictions such as basic authentication on the administrator screen.",
"field_type": "checkbox",
"field_properties": {}
"optional": false
  • field is the property name that should be used when submitting information for that field.
  • field_name is the localized name for the field that should be shown to the user.
  • field_description is a localized explanation of what the field is asking.
  • field_type is the type of component that should be displayed.
  • field_properties includes information about restrictions on the value of the field.
  • optional represents whether the field is required or not.

(1) field_types

Different field_types are meant to help direct the types of form components shown to the user to help differentiate and format expected values.

TypeDescription
stringA string
dropdownA dropdown of values. field_properties['enum'] will contain the translation ↔ value pairings
radioA radio selection. field_properties['enum'] will contain the translation ↔ value pairings
checkboxA true/false checkbox field.
urla URL
texta text box intended for longer values (ex: descriptions) than string
emailan email
dateDatepicker that formats the date as "YYYY-MM-DD"
integera non-negative integer field
file_uploadA field that allows multiple files to be uploaded. The file should be uploaded to the merchant file upload endpoint. The value of the field should then be a list of the ids of the files uploaded.
single_file_uploadA field that allows one file to be uploaded. The file should be uploaded to the merchant file upload endpoint. The value of the field should then be the id of the file uploaded.
terms_of_serviceShould be represented as a checkbox, but will also have an extra external_links field property that links to the actual service agreement(s)
multi_selectA field that allows a list of selected options. field_properties['items']['enum'] will contain the translation ↔ value pairings.

(2) field_properties

field_properties provide information on the properties of the field.

PropertyDescriptionExample
enumA dictionary of option ↔ value mapping. The option is localized based on locale"enum": {"Sole Proprietor": "sole_proprietor", "Corporation": "corporation"}
minLengthminimum length of the string/text"minLength": 1
minimumminimum value for fields of integer field_type"minimum": 0
maximummaximum value for fields of integer field_type"maximum": 2147483647
formatFollows the possible built-in formats as specified by https://json-schema.org/understanding-json-schema/reference/string.html#built-in-formats. Currently only date or email"format": "email"
patternRegex pattern for formatting values"pattern": "^([() \\-_+]*[0-9]){10}[() \\-_+0-9]*$"
external_linksa list of URLs linking to hosted service agreements"external_links": ["https://example.com"]

3. Upload files for seller merchant

Some field_types (single_file_upload, file_upload) require that files be uploaded via our merchant file API first, then the UUID(s) submitted as the value for the live_application.

Request File: Create API to upload the files for Seller Merchant onboarding.

We only accept jpg, png, and pdf formats. Besides, each file size should be smaller than 10MB.

Shell
curl -X POST https://komoju.com/api/v1/merchants/{id}/files \
  -u platform_merchant_secret_key: \
  -F "paper=/path/to/file"

The response will look like:

JSON
{
    "id": "6ssx1zxovw3fgmdsdd1zuzr5u",
    "resource": "file",
    "filename": "blank.png",
    "size": 998,
    "mime_type": "image/png",
    "created_at": "2023-01-10T12:16:00.819+09:00",
    "updated_at": "2023-01-10T12:16:01.085+09:00"
}

4. Submit fields

Based on the requested_fields received in step 2, information can now be submitted for the Seller Merchant via Live Application: Update API.

Here's an example of submitting company_information.company_name

Shell
curl -X PATCH https://komoju.com/api/v1/live_application/{id} \
  -u platform_merchant_secret_key: \
  -d "company_information.company_name=My Company"

If successful, the response will include any additional required fields based on what was just submitted. In the case of company_name, newly_requested_fields will be blank as no additional fields rely on the value company_name.

An example of newly_requested_fields

If you submit sole_proprietor as the company_information.corporation_type

Shell
curl -X PATCH https://komoju.com/api/v1/live_application/{id} \
  -u platform_merchant_secret_key: \
  -d "company_information.corporation_type=sole_proprietor"

In the response, see that newly_requested_fields now includes sole_proprietor_proofs.

JSON
"newly_requested_fields": [
      {
          "field": "company_information.sole_proprietor_proofs",
          "field_name": "Sole proprietor proofs",
          "field_type": "file_upload",
          "field_properties": {}
      }
  ]

newly_requested_fields are only shown upon update and return new fields that should be added to the form as a result of the last update to live_application.

For fields that allow multiple values (multi_select, file_upload field_types)

Submit an array of values.

Shell
curl -X PATCH https://komoju.com/api/v1/live_application/{id} \
  -u platform_merchant_secret_key: \
  -d '{
    "visa_mastercard_credit_card.countermeasures_during_card_registration":
      [ "access_restrictions_during_card_registration"]
  }'

5. Complete the Live Application

The required information may vary based on the seller's type (e.g., corporation, sole proprietorship). Our API responses will guide you through the entire onboarding process, providing additional fields under the requested_fields and newly_requested_fields arrays as needed.

The live application must be completed by filling out all fields until requested_fields, newly_requested_fields, and errored_fields are empty. At this stage, the status field of the application should be set to pending.

The information required typically falls into five categories:

(1) Acceptance of KOMOJU Service Agreements

To provide Platform Model service to your sellers, KOMOJU must establish a direct contractual relationship with them. It requires each Seller Merchant to consent to KOMOJU Merchant Services Terms of Use and Privacy Policy. As the Platform Merchant, you are responsible for ensuring your sellers agree to these terms when registering via your interfaces.

Referencing KOMOJU's service agreement

At a minimum, you must provide your sellers with links to the correct terms and obtain their explicit consent when starting the onboarding process. Here's the recommended process:

  1. Request Live Application: Show API to retrieve the URLs of KOMOJU Merchant Services Terms of Use and Privacy Policy from service_agreement.agreed_to_tos field.
  2. Display these terms to your sellers on your platform when they opt into the service.
  3. Submit your seller's consent back to KOMOJU via service_agreement.agreed_to_tos field in Live Application: Update API.

Here's an example of how to present our terms to your users via your interface.

(2) Company information

Below is a detailed list of the company-related information required for registration.

FieldTypeOptionalDescription
company_information.company_countrydropdownfalseCountry of company's entity. Since only a Japanese entity is allowed to use our service at this moment, you must select JP.
company_information.corporation_typeradiofalseThe type of company, either corporation or sole_proprietor
company_information.company_phonephone_numberfalseCompany's phone number
company_information.share_capital_amountintegerfalseCompany's share capital. Required when the company type is corporation.
company_information.share_capital_currencydropdownfalseThe currency of the company's share capital. Required when the company type is corporation.
company_information.registration_numberstringfalseThe corporate number is a 13-digit unique identifier for every Japanese corporation. Required when the company type is corporation.
company_information.company_namestringfalseCompany's name
company_information.company_name_kanastringfalseCompany's Katakana name
company_information.company_name_alphabetstringfalseCompany's Alphabet name
company_information.company_postal_codestringfalsePostal code of company's address
company_information.company_prefecture_statestringfalsePrefecture of company's address
company_information.company_prefecture_state_kanastringfalsePrefecture of company's address in Katakana
company_information.company_citystringfalseCity of company's address
company_information.company_city_kanastringfalseCity of company's address in Katakana
company_information.company_addressstringfalseCompany's address
company_information.company_address_kanastringfalseCompany's address in Katakana
company_information.company_urlurltrueThe URL of the company's official site.
company_information.industry_descriptiontextfalseDescription of the industry that the company belongs to
company_information.business_descriptiontextfalseDescription of the company's business
company_information.employee_numberintegerfalseNumber of employees
company_information.establishment_datedatefalseThe date of the company's establishment
company_information.office_namestringfalseName of the company's Customer Support Department. (Please provide information that can be disclosed to Seller Merchant's customers.)
company_information.contact_emailemailfalseEmail to contact the company's Customer Support (Please provide information that can be disclosed to Seller Merchant's customers.)
company_information.contact_phonephone_numberfalsePhone number to contact the company's Customer Support (Please provide information that can be disclosed to your user's customers.)
company_information.sole_proprietor_proofsfile_uploadfalseProvide proof of registration of sole proprietorship. Required when the company type is sole_proprietor.

(3) Personal Information

Below is the required information for the Representative Director and Applicant.

For Corporations:

  • The Representative Director and Applicant can be the same person.
  • The Applicant must have the authority to make decisions on corporate contracts.

For Sole Proprietorships:

  • The Representative Director and Applicant should be the same person, so you only have to complete the representative_director fields.
FieldTypeOptionalDescription
representative_director_information.first_namestringfalseRepresentative Director's first name
representative_director_information.first_name_kanastringfalseRepresentative Director's first name in Katakana
representative_director_information.last_namestringfalseRepresentative Director's last name
representative_director_information.last_name_kanastringfalseRepresentative Director's last name in Katakana
representative_director_information.date_of_birthdatefalseRepresentative Director's date of birth
representative_director_information.genderradiofalseRepresentative Director's gender
representative_director_information.countrydropdownfalseCountry of Representative Director's residence address
representative_director_information.postal_codestringfalsePostal code of Representative Director's residence address
representative_director_information.prefecture_statestringfalsePrefecture of Representative Director's residence address
representative_director_information.prefecture_state_kanastringfalsePrefecture of Representative Director's residence address in Katakana
representative_director_information.citystringfalseCity of Representative Director's residence address
representative_director_information.city_kanastringfalseCity of Representative Director's residence address in Katakana
representative_director_information.addressstringfalseAddress of Representative Director's residence address
representative_director_information.address_kanastringfalseAddress of Representative Director's residence address in Katakana
representative_director_information.address_building_namestringtrueThe building name of Representative Director's residence address.
representative_director_information.address_building_name_kanastringtrueThe building name in Katakana of Representative Director's residence address.
representative_director_information.phonestringfalsePhone number of Representative Director
applicant_information.countrydropdownfalseCountry of Applicant's residence address. Required when the company type is corporation.
applicant_information.first_namestringfalseApplicant's first name. Required when the company type is corporation.
applicant_information.first_name_kanastringfalseApplicant's first name in Katakana. Required when the company type is corporation.
applicant_information.last_namestringfalseApplicant's last name. Required when the company type is corporation.
applicant_information.last_name_kanastringfalseApplicant's last name in Katakana. Required when the company type is corporation.
applicant_information.genderradiofalseApplicant's gender. Required when the company type is corporation.
applicant_information.date_of_birthdatefalseApplicant's date of birth. Required when the company type is corporation.
applicant_information.identity_document_typedropdownfalseThe copy of Applicant's identity document: 1. Passport 2. Driver's license 3. ID card 4. My Number Card. If the company is sole_proprietor, upload Representative Director's identity document.
applicant_information.identity_frontsingle_file_uploadfalseUpload a picture or scan of the front side of the Applicant's identity document. If the company is sole_proprietor, upload Representative Director's identity document.
applicant_information.identity_backsingle_file_uploadfalseUpload a picture or scan of the back side. Required if the doc type is either Driver's License or ID Card. If the company is sole_proprietor, upload Representative Director's identity document.

(4) Site Information

Below is the required information related to your website.

  • The store address must match the one listed on the website that hosts the Specified Commercial Transactions Law URL.
FieldTypeOptionalDescription
site_information.site_namestringfalseSite's name. Site Name should be consistent with the name of the actual store.
site_information.site_name_kanastringfalseSite's Katakana name
site_information.site_name_alphabetstringfalseSite's Alphabet name
site_information.site_urlstringfalseSite's URL
site_information.notestringtrueIf making a payment on Seller Merchant's store requires any login information or other credentials, please supply them here. We may need to view the entire payment flow from the end-user perspective during screening.
site_information.establishment_datedatefalseThe date of the site's establishment
site_information.industry_typedropdownfalseThe industry type of the site's services and products. If you're unsure, please select other_not_listed_category.
site_information.site_annual_salesintegerfalseAnnual sales forecast of the store
site_information.site_annual_sales_currencydropdownfalseThe currency of annual sales forecast
site_information.site_average_transactional_valueintegerfalseThe average order value of the store
site_information.site_average_transactional_currencydropdownfalseThe currency of the average order value
site_information.site_minimum_product_pricing_centsintegerfalseThe minimum price of a product in the store
site_information.site_minimum_product_pricing_currencydropdownfalseThe currency of the minimum price
site_information.site_maximum_product_pricing_centsintegerfalseThe maximum price of a product in the store
site_information.site_maximum_product_pricing_currencydropdownfalseThe currency of the maximum price
site_information.store_countrydropdownfalseThe country of the store address. The store address should match the one listed on the website that hosts the Specified Commercial Transactions Law URL.
site_information.store_postal_codestringfalseThe postal code of the store address.
site_information.store_prefecture_statestringfalseThe state of the store address
site_information.store_prefecture_state_kanastringfalseThe state of the store address in Katakana
site_information.store_citystringfalseThe city of the store address
site_information.store_city_kanastringfalseThe city of the store address in Katakana
site_information.store_addressstringfalseStore's address
site_information.store_address_kanastringfalseStore's address in Katakana
site_information.sctl_urlurlfalseSpecified Commercial Transactions Law URL. Please place the Specified Commercial Transactions Law page in a location that can be accessed directly from the top page. Refer to this page for the appropriate content.
site_information.sales_permit_requiredradiofalseDoes the seller's business require a sales permit to sell the products described? (Secondhand Dealer License, Liquor Sales License, Cosmetics Manufacturing and Sales License, Pharmaceutical Sales License)
site_information.sales_permitsfile_uploadfalseUpload the copies of Sales permits if site_information.sales_permit_required is true
site_information.aup_acceptedterms_of_servicefalsePlease ensure the seller has acknowledged and agreed with the acceptable use policy.

(5) Bank Account information

Below is the required bank account information.

For Corporations:

  • You can only register a bank account under the same name as the corporation applying.

For Sole Proprietorships:

  • You can only register a bank account under the name of the representative or the business name.

Before proceeding, please read this guide to ensure the bank account information is entered correctly.

Warning

If the account holder name is incorrect, there may be a delay in receiving the payout. Please make sure to accurately enter the half-width kana name as it appears in your bank passbook.

FieldTypeOptionalDescription
bank_account_information.transfer_typedropdownfalseLimited to Japanese bank accounts. Therefore, the option is limited to domestic.
bank_account_information.default_frequencydropdownfalseYou can decide the frequency that KOMOJU pays out to your user, either weekly or monthly. Learn more about payout frequency here
bank_account_information.zengin_bank_namestringfalseBank's name
bank_account_information.zengin_bank_codestringfalseBank's code
bank_account_information.zengin_branch_namestringfalseBank branch's name
bank_account_information.zengin_branch_codestringfalseBank branch's code
bank_account_information.zengin_account_typedropdownfalseThe bank account type, either ordinary or checking
bank_account_information.zengin_account_numberstringfalseThe bank account number. Please refer to this guide before filling out.
bank_account_information.zengin_account_holder_kanastringfalseAccount holder's Katakana name. If incorrect, there may be a delay in receiving the payout. Please make sure to accurately enter the half-width kana name as it appears in your bank passbook.
bank_account_information.currencydropdownfalseLimited to JPY since we only support Japanese domestic bank accounts for payout.

6. Review submitted information

Request Live Application: Show again to review all submitted information. The submitted_fields array will display the information you've already provided.

7. Set up webhook

You can set up webhooks to subscribe to events and receive notifications when there are updates to the review status of a Seller Merchant's application.

  • Learn more about Webhook events for Platform Model here

8. Specify Seller Merchant's Owned Payment Methods

Note

Owned Payment Methods can only be selected from your Common Payment Methods. Please note that only the payment methods listed in your Common Payment Methods are available for selection as Owned Payment Methods. For more details, refer to here.

You will need to apply for the payment methods your Seller Merchant intends to use. To view applicable payment methods to apply for, use the Live Application: Payment Methods API which will return the following:

Shell
curl -X GET https://komoju.com/api/v1/live_application/{id}/payment_methods \
  -u platform_merchant_secret_key:
  • submitted_payment_methods lists the payment methods Seller Merchant has already applied for.
  • unsubmitted_payment_methods lists the applicable payment methods Seller Merchant has not yet applied for.

To apply for a specific payment method, request Live Application: Update Payment Method API.

Below are the details when applying for each payment method:

(1) VISA/MasterCard

Payment methods: visa_mastercard_credit_card

Available for corporation and sole_proprietor

Note: 3D Secure 2.0 will be used for all credit card payments except some integration types. For more details, please see this article (Japanese).

To enable credit card payments for your Seller Merchant, you will have to provide additional information about their business.

1st stage questionnaire:

FieldTypeOptionalDescription
shared_payment_method_data.has_processed_cc_beforecheckboxfalseHas your user's business processed credit card transactions before? (True/False)
shared_payment_method_data.processes_card_infocheckboxfalseDoes your user intend to save or process credit card details? (True/False). Should select False since you should process the card instead of your seller.
shared_payment_method_data.conducts_door_to_door_salescheckboxfalseDoes your user's company operate Door-to-Door sales? (True/False)
shared_payment_method_data.conducts_telemarketingcheckboxfalseDoes your company operate Telemarketing Sales? (True/False)
shared_payment_method_data.conducts_mlm_schemecheckboxfalseDoes your company operate Network Marketing? (True/False)
shared_payment_method_data.conducts_business_opportunity_schemecheckboxfalseDoes your company operate Business Opportunity (Biz-Opp)? (True/False)
shared_payment_method_data.provides_specified_continuous_servicescheckboxfalseDoes your company provide specified continuous services (aesthetic salon, beauty care, language class, tutoring, tutoring school, marriage introduction service, computer class)? (True/False)
shared_payment_method_data.violated_consumer_contract_actcheckboxfalseHas your business violated the Consumer Contract Act (消費者契約法) and lost a lawsuit due to the violation(s) in the past 5 years? (True/False)
shared_payment_method_data.violated_commercial_transaction_actcheckboxfalseHas your business violated the Specified Commercial Transaction Act (特定商取引法) in the past five years and lost a lawsuit due to the violation(s)? (True/False)

2nd stage questionnaire: Reporting on Security Measures

KOMOJU has been requested by the Ministry of Economy, Trade and Industry (METI), the Japan Credit Association (JCA), and other organizations to request that EC merchants planning to introduce new credit card payment systems declare the status of their security measures based on the "Security Checklist" developed by the Credit Transaction Security Measures Council.

The "Security Checklist" covers the basic security measures set forth in the "Credit Card Security Guidelines (Version 4.0)" published by METI.

Topic 1: Measures against inadequate access restrictions on the administrator's screen and administrator ID/PW mismanagement

FieldTypeOptionalDescription
visa_mastercard_credit_card.access_restrictionscheckboxfalseRestrict IP addresses accessible to administrators; if IP addresses cannot be restricted, set access restrictions such as basic authentication. true = Implemented, false = Not known
visa_mastercard_credit_card.mfa_implementationcheckboxfalseAdopt two-step or two-factor authentication to prevent unauthorized use of acquired accounts. true = Implemented, false = Not known
visa_mastercard_credit_card.account_lock_v2checkboxfalseEnable the account lock function and lock the account after 10 or less failed login attempts (based on PCI DSS ver 4.0). true = Implemented, false = Not known

Topic 2: Measures against inadequate settings due to exposure of data directories

FieldTypeOptionalDescription
visa_mastercard_credit_card.public_directoriescheckboxfalseDo not place important files in public directories. true = Implemented, false = Not known
visa_mastercard_credit_card.file_extension_restrictionscheckboxfalseConfigure settings such as restricting file extensions and files that can be uploaded by web servers and web applications. true = Implemented, false = Not known

Topic 3: Periodic vulnerability assessments or penetration tests, and measures to address web application vulnerabilities.

FieldTypeOptionalDescription
visa_mastercard_credit_card.vulnerability_assessmentscheckboxfalseConduct periodic vulnerability assessments or penetration tests, and take necessary corrective actions. true = Implemented, false = Not known
visa_mastercard_credit_card.sql_injection_and_xss_v2checkboxfalseAs measures against SQL injection and cross-site scripting vulnerabilities, use the latest plug-ins and upgrade software versions. true = Implemented, false = Not known
visa_mastercard_credit_card.source_code_reviewcheckboxfalseIf a web application is developed or customized, conduct a source code review to confirm that it has been securely coded. true = Implemented, false = Not known

Topic 4: Installation and operation of anti-virus software as measures against malware

FieldTypeOptionalDescription
visa_mastercard_credit_card.anti_virus_softwarecheckboxfalseInstall anti-virus software as measures against malware detection/removal, and update signatures, perform periodic full scans. true = Implemented, false = Not known

Topic 5: Countermeasures against malicious validation and credit masters

FieldTypeOptionalDescription
visa_mastercard_credit_card.against_validation_hackcheckboxfalseOne or more of the following measures are implemented: restrict access from suspicious IPs, restrict input from the same account, identity verification including EMV 3-D Secure, limit on the number of validity checks. true = Implemented (You do not need to take any additional measures if you have introduced 3D Secure via KOMOJU.), false = Not known

Topic 6: Countermeasures against unauthorized login

FieldTypeOptionalDescription
visa_mastercard_credit_card.have_countermeasures_against_unauthorized_logincheckboxfalseDoes your site have a user login function (i.e., register/maintain a credit card number and log in to use that card number)? true = Yes, false = No

Topic 7: If you answered true to visa_mastercard_credit_card.have_countermeasures_against_unauthorized_login, please answer the following questions regarding the anti-fraud login measures implemented in your system.

FieldTypeOptionalDescription
visa_mastercard_credit_card.countermeasures_during_card_registrationmulti_selectfalsePlease check if you have implemented effective measures to prevent fraudulent use at the time of member registration (credit card number registration). Options: access_restrictions_during_card_registration, mfa_implementation_during_card_registration, user_information_validation_during_card_registration, fraud_detection_system_during_card_registration
visa_mastercard_credit_card.countermeasures_during_authenticationmulti_selectfalsePlease check if you have implemented effective countermeasures against fraudulent logins during login authentication after member registration. Options: access_restrictions_during_authentication, mfa_implementation_during_authentication, login_attempt_restriction_during_authentication, login_notification_during_authentication, device_fingerprint_during_authentication
visa_mastercard_credit_card.countermeasures_during_user_data_modificationmulti_selectfalsePlease check if you have implemented effective measures to prevent fraudulent use when changing member attributes after login. Options: access_restrictions_during_user_data_modification, mfa_implementation_during_user_data_modification, fraud_detection_system_during_user_data_modification
  • access_restrictions_during_card_registration: Restrict access from suspicious IP addresses
  • mfa_implementation_during_card_registration: Identification by two-factor authentication, etc.
  • user_information_validation_during_card_registration: Confirmation of personal information at the time of member registration
  • fraud_detection_system_during_card_registration: Fraud detection system (Fraud service)
  • access_restrictions_during_authentication: Restrict access from suspicious IP addresses
  • mfa_implementation_during_authentication: Identification by two-factor authentication, etc.
  • login_attempt_restriction_during_authentication: Tighten limits on the number of login attempts (to address account password cracking)
  • login_notification_during_authentication: Email and SMS notifications upon login, throttling, etc.
  • device_fingerprint_during_authentication: Device fingerprints, etc.
  • access_restrictions_during_user_data_modification: Restrict access from suspicious IP addresses
  • mfa_implementation_during_user_data_modification: Identification by two-factor authentication, etc.
  • fraud_detection_system_during_user_data_modification: Fraud detection system (Fraud service)

(2) JCB/AMEX/Diners (Japan)

Payment methods: jcb_amex_diners_credit_card

Available for corporation and sole_proprietor

Note: 3D Secure 2.0 will be used for all credit card payments except some integration types. For more details, please see this article (Japanese).

To enable credit card payments for your Seller Merchant, you will have to provide additional information about their business.

1st stage questionnaire:

FieldTypeOptionalDescription
shared_payment_method_data.has_processed_cc_beforecheckboxfalseHas your user's business processed credit card transactions before? (True/False)
shared_payment_method_data.processes_card_infocheckboxfalseDoes your user intend to save or process credit card details? Should select False since you should process the card instead of your seller. (True/False)
shared_payment_method_data.conducts_door_to_door_salescheckboxfalseDoes your user's company operate Door-to-Door sales? (True/False)
shared_payment_method_data.conducts_telemarketingcheckboxfalseDoes your company operate Telemarketing Sales? (True/False)
shared_payment_method_data.conducts_mlm_schemecheckboxfalseDoes your company operate Network Marketing? (True/False)
shared_payment_method_data.conducts_business_opportunity_schemecheckboxfalseDoes your company operate Business Opportunity (Biz-Opp)? (True/False)
shared_payment_method_data.provides_specified_continuous_servicescheckboxfalseDoes your company provide specified continuous services? (True/False)
shared_payment_method_data.violated_consumer_contract_actcheckboxfalseHas your business violated the Consumer Contract Act (消費者契約法) and lost a lawsuit in the past 5 years? (True/False)
shared_payment_method_data.violated_commercial_transaction_actcheckboxfalseHas your business violated the Specified Commercial Transaction Act (特定商取引法) in the past five years? (True/False)

2nd stage questionnaire: Reporting on Security Measures

Same security checklist as VISA/MasterCard above, using the jcb_amex_diners_credit_card field prefix instead of visa_mastercard_credit_card.

(3) PayPay

Payment methods: paypay

Available for corporation and sole_proprietor

The following information is required when applying for PayPay:

FieldTypeOptionalDescription
paypay.accepted_paypay_tosterms_of_servicefalseSeller Merchant has read and agreed with the PayPay加盟店規約, PayPay加盟店ガイドライン, and 自治体等およびふるさと納税ポータルサイト運営会社への加盟店情報連携の同意について. Also agrees to be contacted by PayPay regarding sales promotions.

(4) Merpay

Payment methods: merpay

Available for corporation only.

The following information is required when applying for Merpay:

FieldTypeOptionalDescription
merpay.accepted_merpay_tosterms_of_servicefalseSeller Merchant has read and agreed with the メルペイ加盟店規約 and メルペイプライバシーポリシー.
shared_payment_method_data.privacy_policy_urlstringfalseURL of your user's privacy policy

(5) Bank Transfer

Payment methods: bank_transfer

Available for corporation and sole_proprietor

No additional information is required when applying for Bank Transfer.

(6) Pay-easy

Payment methods: pay_easy

Available for corporation and sole_proprietor

No additional information is required when applying for Pay-easy.

(7) Konbini

Payment methods: convenience_store

Available for corporation and sole_proprietor

The following information is required when applying for Konbini:

FieldTypeOptionalDescription
shared_payment_method_data.open_timestringfalseOpening time of Seller Merchant's customer service
shared_payment_method_data.close_timestringfalseClosing time of Seller Merchant's customer service
convenience_store.expected_number_of_paymentsintegerfalseSeller Merchant's expected number of transactions per month

(8) 7-Eleven

Payment methods: seven_eleven

Available for corporation only

For 7-Eleven payment, there is a screening process to ensure that the site and operation are in line with the regulations set by 7-Eleven. The expected review time is approximately one to two months after applying.

The following information is required when applying for 7-Eleven:

FieldTypeOptionalDescription
shared_payment_method_data.open_timestringfalseOpening time of Seller Merchant's customer service
shared_payment_method_data.close_timestringfalseClosing time of Seller Merchant's customer service
seven_eleven.no_direct_delivery_from_producercheckboxfalse7-Eleven payment is not available for products shipped directly from the place of production or manufacturer. Products must be in your own or contracted warehouse for immediate delivery at the time of order.
seven_eleven.no_ticket_salescheckboxfalseAdmission tickets, spectator tickets, and other "ticket sales" cannot be handled.
seven_eleven.correct_flow_for_order_itemscheckboxfalseIf you have products that are on backorder or made-to-order, orders must be accepted only after the products have arrived at your store or warehouse.
seven_eleven.delivery_within_two_monthscheckboxfalseMade-to-order and pre-order products must be shipped within two months of ordering. The specific date of shipment or arrival must be clearly indicated on the website.
seven_eleven.all_items_are_cheaper_than_konbini_limitcheckboxfalseIf you have merchandise that requires more than 300,000 yen per transaction, your site must clearly indicate "Konbini Payment(s) cannot be used for payments over 300,000 yen".
seven_eleven.display_sales_permit_numbercheckboxfalseIf you have products that require a sales license, you must clearly state the license number on your website.
seven_eleven.order_fee_is_displayedcheckboxfalseShipping costs must be clearly listed on the site and available for review before adding items to the shopping cart.
seven_eleven.no_international_transactioncheckboxfalse7-Eleven payment can only be used within Japan. Cannot be used for overseas orders/shipments or non-Japanese websites.
seven_eleven.provided_info_matches_sctlcheckboxfalseThe application information submitted to KOMOJU and the content of the "Notation based on Act of Specified Commercial Transactions" page must match.
seven_eleven.sctl_page_has_phone_numbercheckboxfalseYour phone number must be displayed on the "Notation based on Act of Specified Commercial Transactions" page. The phone number must be a landline number, cell phone numbers are not acceptable.
seven_eleven.product_pages_are_publiccheckboxfalseAre the product pages ready and publicly accessible?
seven_eleven.have_sold_as_regular_pricecheckboxfalseIf the product is listed with a regular and a discounted price, you must have a record of selling it at the regular price.
seven_eleven.site_is_publiccheckboxfalseIs the site URL accessible? If login is required, include the login information in the "Notes" section.
seven_eleven.notestringtrue1. Share login credentials here if ID/PW is required to access your user's site. 2. If your phone number differs from the one on the "Notation based on Act of Specified Commercial Transactions" page, enter your new phone number here.

9. (Test environment only) Simulate the Live application status

Once you complete the merchant application and at least one Owned Payment Method application, you'll be able to simulate the result of KOMOJU's review.

(1) Simulate Merchant Application status

Request Live Application: Simulate Status API to simulate whether the merchant application will be accepted or declined.

(2) Simulate Owned Payment Method Application status

Request Live Application: Simulate Payment Method Status API to simulate the status (accepted or declined) of an Owned Payment Method application.

Page Navigation

Ctrl←Ctrl→Ctrl↑Ctrl↓