Properties
| Name | Type | Description |
|---|---|---|
| name | string | The updated name of the Space. |
| color | string | The updated hex color code. |
| private | boolean | Whether the Space should be private. |
| admin_can_manage | boolean | Whether admins can manage the Space. |
| multiple_assignees | boolean | Whether to enable multiple assignees. |
| features | object | Updated features configuration. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/UpdateSpaceRequest",
"title": "UpdateSpaceRequest",
"type": "object",
"description": "Request body for updating an existing Space.",
"properties": {
"name": {
"type": "string",
"description": "The updated name of the Space."
},
"color": {
"type": "string",
"description": "The updated hex color code."
},
"private": {
"type": "boolean",
"description": "Whether the Space should be private."
},
"admin_can_manage": {
"type": "boolean",
"description": "Whether admins can manage the Space."
},
"multiple_assignees": {
"type": "boolean",
"description": "Whether to enable multiple assignees."
},
"features": {
"type": "object",
"description": "Updated features configuration."
}
}
}