Create a Space¶
See the following request and response for creating a new space:
Request¶
Try in your local Swagger
POST /spaces
with the following body:
{
"title": "My Demo Space",
"description": "My Demo *Space* description"
}
Info¶
The Description can contain formatting in markdown format.
Response¶
{
"id": "{spaceId}",
"title": "My Demo Space",
"description": "** My Demo *Space* description"
}
Info¶
The ID is a unique, randomly generated identifier and is mandatory as an argument in subsequent requests.