fastmon Docs
Organizations

Create Organization

Report an issue

Create a new organization.

The user who creates the organization automatically becomes the owner with full permissions. New organizations start PENDING: members can look around, but applications/sites (and thus data ingestion) require review first. Users with the admin-granted auto_approve_orgs flag skip the queue — their orgs start APPROVED with source trusted_user.

Authorization

bearerAuth
AuthorizationBearer <token>

API token generated from the fastmon dashboard (Account → API Token) or at organization level (fmo_…, one that outlives its creator). Send as Authorization: Bearer fm_... or paste the full token (including its prefix) into the Authorize dialog.

In: header

Request Body

application/json

Response Body

application/json

application/json

application/json

application/json

POST
/organizations
curl -X POST "https://example.com/organizations" \  -H "Content-Type: application/json" \  -d '{    "name": "string",    "intended_domain": "string"  }'
{  "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",  "name": "string",  "is_active": true,  "review_status": "pending",  "intended_domain": "string",  "storage": "shared",  "clickhouse_table": "string",  "plan": "none",  "is_partner": true,  "ai_enabled": true,  "synthetic_enabled": true,  "mcp_enabled": true,  "role": "owner",  "permissions": [],  "access": "member"}