Skip to main content
PATCH
/
settings
/
app
Update App Settings
curl --request PATCH \
  --url https://api.example.com/settings/app \
  --header 'Content-Type: application/json' \
  --cookie fastapiusersauth= \
  --data '
{
  "app_registry_validation_enabled": false,
  "app_executions_query_limit": 100,
  "app_interactions_enabled": false
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}

Authorizations

fastapiusersauth
string
cookie
required

Body

application/json

Settings for OAuth authentication.

app_registry_validation_enabled
boolean
default:false

Whether registry validation is enabled.

app_executions_query_limit
integer
default:100

The maximum number of executions to return in a single query.

app_interactions_enabled
boolean
default:false

Whether app interactions are enabled.

Response

Successful Response