> ## Documentation Index
> Fetch the complete documentation index at: https://laas.mippo.io/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Apply as a Mippo LaaS partner

> Submit a partner application to onboard your company for the Mippo LaaS API, including legal entity details, contact info, and use case.

<Note>
  This endpoint uses Clerk JWT auth (your Mippo login session), not an API key. It is called by the `/laas/apply` frontend — not from your integration code.
</Note>

## Request

<ParamField body="companyName" type="string" required>
  Legal company name.
</ParamField>

<ParamField body="cnpj" type="string" required>
  Brazilian CNPJ.
</ParamField>

<ParamField body="spsavLicenseNumber" type="string">
  Your SPSAV license number, if held. Leave empty if pending.
</ParamField>

<ParamField body="integrationType" type="string" required>
  `"direct"` | `"via_partner"` | `"shared"`
</ParamField>

<ParamField body="expectedVolumeBrl" type="number" required>
  Expected monthly transaction volume in BRL.
</ParamField>

<ParamField body="webhookUrl" type="string">
  Webhook endpoint URL. Can be added later in the Partner Dashboard.
</ParamField>

## Response

```json Response (201) theme={null}
{
  "success": true,
  "data": {
    "partnerId": "partner_abc123",
    "status": "PENDING",
    "message": "Application received. We review within 2 business days."
  }
}
```

On approval, you receive an email and can generate API keys in the Partner Dashboard.
