v1
latestOpenAPI 3.1.02026-07-242735131.1 MBCompany Managers
Create and invite a Company Manager
Create a Company Manager and sends the invitation email for signing in to the Remote Platform.
Scopes
| Category | Read only Scope | Write only Scope (read access implicit) |
|---|---|---|
| Manage company resources (company_admin) | - | Manage managers (company_manager:write) |
post/v1/company-managers
Query parameters
actionsstring
Complementary action(s) to perform when creating a company manager:
- no_invite skips the email invitation step
Headers
Authorizationstring required
Requires a Company-scoped access token obtained through the Authorization Code flow or the Refresh Token flow.
The refresh token needs to have been obtained through the Authorization Code flow.
Request body
Example request
{
"email": "john.doe@example.com",
"name": "John Doe",
"role": "admin"
}Response
Success
Example response
{
"company_manager": {
"company_id": "0a8s2d1-company-id-2e3f4th",
"role": "owner",
"user_email": "user@example.com",
"user_id": "983088c9-user-id-023fc08b8625",
"user_name": "Anne White"
}
}