🏢 Workspaces

Update a workspace

Updates an existing workspace. Only the provided fields are changed; omitted fields keep their current values.

put/api/v1/workspaces/{workspace_id}

Path parameters

workspace_idstring required
Example:64edbecf78f9fa920f0279fe

Workspace ID

Request body

namestring
logostring url
timezonestring
notestring nullable
instagram_posting_method'api' | 'mobile'

Example request

{
  "name": "Acme Marketing",
  "logo": "https://logo.clearbit.com/contentstudio.io",
  "timezone": "Asia/Karachi",
  "note": "Updated note",
  "instagram_posting_method": "api",
  "first_day": {
    "day": "Monday",
    "key": 1
  }
}

Response

Workspace updated successfully

statusboolean
messagestring
dataobject

Example response

{
  "status": true,
  "message": "Workspace updated successfully. Use the returned `id` as `workspace_id` in subsequent requests."
}

Changes