API ReferenceOrganization
organization.create
Type: Mutation · Auth: Workspace-aware
Input
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
| legalName | string | Yes | — | Legal name |
| displayName | string | Yes | — | Display name |
| status | enum(active, inactive, archived) | Yes | "active" | Status |
| categories | string[] | No | — | Categories |
| parentOrganizationId | unknown | No | — | ID of the associated parent organization |
| website | string.uri | No | — | Website |
| primaryPhone | string | No | — | Primary phone |
| primaryEmail | string.email | No | — | Primary email |
| physicalAddress | object | No | — | Physical address |
| mailingAddress | object | No | — | Mailing address |
| notesSummary | string | No | — | Notes summary |
Example
{
"legalName": "example",
"displayName": "example",
"status": "active",
"categories": [],
"parentOrganizationId": null,
"website": "https://example.com"
}