Skip to main content
POST
/
v1
/
workspaces
Create a workspace
curl --request POST \
  --url https://api.example.com/v1/workspaces \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "domain": "<string>",
  "metadata": {}
}
'

Documentation Index

Fetch the complete documentation index at: https://docs.hawkings.education/llms.txt

Use this file to discover all available pages before exploring further.

Body

name
string
required
domain
string
metadata
object

Examples

const ws = await hk.workspaces.create({ name: "Acme University" });

Returns

The new Workspace.