Create an organization
Create a new organization with the specified details. This endpoint allows authenticated users to establish new organizational structures with custom names, descriptions, and initial settings. The creator automatically becomes the owner of the new organization.
POST
Parameters
Body
application/jsonFqdn
REQUIRED
Fully Qualified Domain Name for the new organization
Name
REQUIRED
Human-readable name for the new organization
Image
Represents a file or media asset stored in the platform
Description
Optional detailed description of the organization's purpose and activities
| Status code | Description |
|---|---|
| 200 | Successfully created resource with its unique identifier |
| 400 | Bad request error - the request contains invalid parameters or malformed data |
| 500 | Internal server error - an unexpected error occurred on the server |
cURL
curl -L -X POST \"https://blockv-labs.io/organizations" \-H 'Accept: application/json'
Response
{"id": "string"}
json
{"type": "object","required": ["id"],"properties": {"id": {"type": "string","description": "Unique identifier of the created resource"}}}