Skip to main content
GET
/
v1
/
workspaces
/
{id}
/
settings
Get workspace settings
curl --request GET \
  --url https://api.conduit.ai/v1/workspaces/{id}/settings \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "company_name": "<string>",
    "company_website": "<string>",
    "company_size": "<string>",
    "about": "<string>",
    "timezone": "America/New_York",
    "default_phone_country_code": "US",
    "business_hours": {
      "timezone": "America/New_York",
      "days": [
        {
          "enabled": true,
          "ranges": [
            {
              "start": "09:00",
              "end": "17:00"
            }
          ]
        }
      ]
    }
  }
}

Authorizations

Authorization
string
header
required

Conduit API token. Use Authorization: Bearer <token>. Read/write endpoints require a token with write access.

Path Parameters

id
string
required

Workspace identifier.

Example:

"j57demo8f8x7c9v0n2q4r6t8y1u3i5o"

Response

Workspace settings

General workspace settings: company profile, timezone, date format, and business hours.

data
object
required