Space
Update a space
Updates the given space's settings.
Base URL
https://app.usesaki.com/apiput
/spaces/{space}Update a space
Updates the given space's settings.
Authorization
Bearer <token>Path Parameters
spacerequiredintegerThe space ID
Request Body
application/jsonnamestringtimezonestringResponse
curl -X PUT "https://app.usesaki.com/api/spaces/{space}" \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"name": "string",
"timezone": "string"
}'Response
{
"data": {
"id": 0,
"name": "string",
"created_at": "2024-01-01T00:00:00Z",
"updated_at": "2024-01-01T00:00:00Z"
}
}