Merchant Registration


v2 POST console.bayar.cash/api/v2/merchant-registrations v3 POST api.console.bayar.cash/v3/merchant-registrations


Please note this section only for Bayarcash Enterprise Partner. Please refer to your account manager for further details.

Example of sending POST request with cURL.

curl -X POST https://api.console.bayar.cash/v3/merchant-registrations \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <Enterprise_Partner_API_Key>' \
  --header 'Authorization: Bearer <Personal_Access_Token>' \
  --data-raw '{
        "organisation_name": string,
        "organisation_registration_number": string,
        "organisation_bank_id": integer, // Please refer Payout Bank List
        "organisation_bank_account_holder": string,
        "organisation_bank_account_number": string,
        "login_name": string,
        "login_email": string,
        "login_mobile_number": integer,
        "password": string,
        "password_confirmation": string
      }'

Example of JSON structured response.

Last updated