For the complete documentation index, see llms.txt. This page is also available as Markdown.

Why am I getting a 403 Forbidden when submitting an application?

A 403 Forbidden response on POST /merchant-onboarding/applications almost always means your API key is valid but is not authorized for the partnerId you supplied. The API key issued to you is scoped to a specific partner — if partnerId does not exactly match your provisioned partner ID, the request is rejected.

Check the following:

1. Verify your partnerId The partnerId field must match the partner ID provisioned by Bead for your account. A placeholder or incorrect value will result in a 403 even if all other fields are valid.

{
  "partnerId": "a3f9c2e817b054d63e2a1f08"
}

Contact your Bead integration contact if you are unsure of your partnerId.

2. Use your API key, not a bearer token Requests to the merchant onboarding endpoints must be authenticated using your scoped API key. Bearer tokens (used for admin or internal access) are not valid for this endpoint and will produce unexpected results including 404 responses.

3. Confirm you are hitting the correct environment Sandbox and production use separate credentials and separate partnerId values. A sandbox API key used against the production base URL — or vice versa — will return a 403.

Example request (correct):

{
  "submitImmediately": true,
  "merchantData": {
    "partnerId": "a3f9c2e817b054d63e2a1f08",
    "merchantName": "Harborview Market",
    ...
  }
}

Example error response:

Note: The 403 response body does not include field-level detail. If you have verified all of the above and are still seeing a 403, contact Bead support with the traceId from the response body.

Related documentation:

Last updated