Skip to main content
PATCH
/
v1
/
orgs
/
{org_id}
Update an org
curl --request PATCH \
  --url http://localhost:3000/v1/orgs/{org_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "timezone": "<string>",
  "industry": "<string>",
  "default_environment": "<string>",
  "default_sales_motion": "<string>",
  "default_recording_type": "<string>",
  "pii_policy": {
    "redaction_level": "none",
    "retain_transcript_days": 1,
    "retain_analysis_days": 1,
    "redact_fields": [
      "<string>"
    ]
  },
  "settings": {}
}
'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

org_id
string
required

Body

application/json
name
string
Maximum string length: 200
timezone
string
Maximum string length: 64
industry
string | null
default_environment
string | null
default_sales_motion
string | null
default_recording_type
string | null
pii_policy
object
settings
object

Response

200

Default Response