POST
/api/v2/mor/public/companiesProvision a MoR child company and its admin using a company's API key with MoR enabled.
Authentication
Send your API key in the x-api-key header on every request.
Request body
application/json
| Field | Type | Required | Description |
|---|---|---|---|
| CompanyName | string | Yes | |
| LegalName | string | Yes | |
| RegistrationNumber | string | No | |
| Country | string | No | |
| AdminEmail | string | Yes | |
| AdminFirstName | string | Yes | |
| AdminLastName | string | Yes | |
| AdminPassword | string | Yes | |
| TierId | unknown | No |
Responses
201 — Created
| Field | Type | Required | Description |
|---|---|---|---|
| CompanyId | unknown | No | |
| AdminUserId | unknown | No | |
| AdminEmail | string | No |
Example request
curl -X POST "https://{base_url}/api/v2/mor/public/companies" \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"CompanyName":"…","LegalName":"…","AdminEmail":"…","AdminFirstName":"…"}'This page is generated from the live OpenAPI specification and always matches the current API.