Skip to main content
PUT
/
v0
/
org-config
curl --request PUT \
  --url https://api.avidoai.com/v0/org-config \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --header 'x-application-id: <api-key>' \
  --data '
{
  "disableWebhooks": true
}
'
{
  "data": {
    "inferenceProvider": "AZURE",
    "disableWebhooks": true
  }
}

Authorizations

x-api-key
string
header
required

Your unique Avido API key

x-application-id
string
header
required

Your unique Avido Application ID

Body

application/json

Org config data to update

Request body for updating org config

inferenceProvider
enum<string>

The inference provider for LLM operations

Available options:
OPENAI,
AZURE
Example:

"AZURE"

disableWebhooks
boolean

When true, prevents simulate-task from sending webhooks (kill switch)

Example:

false

Response

Successfully updated org config

Successful response containing org config data (defaults provided if not configured)

data
OrgConfig · object
required

Organization-level configuration settings