v50

latestOpenAPI 3.0.0raw.githubusercontent.com2025-04-046348254.7 KB
Organizations

Edit details of an organization

Edits organization details for the given organization ID. The user must be the organization's owner.

patch/orgs/{org_id}

Path parameters

org_idstring required

ID of the organization

Request body

namestring

Must be a unique organization name

contactstring
websitestring uri
feature_flagsstring[]
preferred_region'ap-south-1' | 'ap-southeast-1' | 'us-east-1' | 'eu-central-1'

Example request

{
  "website": "https://www.dyte.io"
}

Response

Operation successful

successboolean required

Example response

{
  "success": true,
  "data": {
    "id": "bbb0e958-93ce-41c7-9745-16e7aa51c568",
    "name": "Dyte",
    "contact": "778-330-2389",
    "website": "https://www.dyte.io",
    "apikey": "4deeb3d8e8b5e74d5522",
    "preferred_region": "us-east-1",
    "created_at": "2022-05-28T08:18:34.804Z",
    "updated_at": "2022-05-28T08:18:34.804Z"
  }
}