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,
    "webhookRpm": null
  }
}

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

webhookRpm
integer | null

Maximum webhook requests per minute for this organization (max 10,000). Null uses the default global rate.

Required range: 0 < x <= 10000
Example:

30

Response

Successfully updated org config

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

data
OrgConfig · object
required

Organization-level configuration settings