Skip to main content
PATCH
/
properties
Update organization properties
curl --request PATCH \
  --url https://api.pipecat.daily.co/v1/properties \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "defaultRegion": "eu-central"
}
'
{
  "properties": {
    "defaultRegion": {
      "description": "Default region for new service deployments",
      "type": "string",
      "readOnly": false,
      "currentValue": "eu-central",
      "default": "us-west",
      "availableValues": [
        "us-west",
        "us-east",
        "eu-central",
        "ap-south"
      ]
    }
  }
}

Authorizations

Authorization
string
header
required

Authentication requires a Pipecat Cloud Private API token.

Generate a Private API key from your Dashboard (Settings > API Keys > Private > Create key) and include it as a Bearer token in the Authorization header.

Body

application/json
defaultRegion
string

Default region for new service deployments. Must be one of the available regions for your organization.

Example:

"us-west"

Response

Properties successfully updated

properties
object