Saki Docs
Space

Update a space

Updates the given space's settings.

Base URLhttps://app.usesaki.com/api
put/spaces/{space}

Update a space

Updates the given space's settings.

AuthorizationBearer <token>

Path Parameters

spacerequiredinteger

The space ID

Request Body

application/json
namestring
timezonestring

Response

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"
  }
}