memμrondocs
Console
API REFERENCE

Create a space

Create a space in the active organization and optionally make it the organization default.

Requires authentication — a Bearer token or X-Memuron-Actor-Id header.

Body parameters

namestringrequired

slugstringoptional

descriptionstringoptional

guardian_promptstringoptional

is_defaultbooleanoptional

Requires space:admin scope.
POST/memuron/spaces
curl -X POST https://api.memuron.com/memuron/spaces \
  -H "Content-Type: application/json"
200 OK
{
  "id": "…",
  "slug": "work",
  "name": "Work",
  "token": "space.work",
  "is_default": false
}