Auth0 · Schema

UpdateBrandingPhoneProviderRequestContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
name object
disabled boolean Whether the provider is enabled (false) or disabled (true).
credentials object
configuration object
View JSON Schema on GitHub

JSON Schema

auth0-updatebrandingphoneproviderrequestcontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateBrandingPhoneProviderRequestContent",
  "title": "UpdateBrandingPhoneProviderRequestContent",
  "type": "object",
  "additionalProperties": false,
  "minProperties": 1,
  "properties": {
    "name": {
      "$ref": "#/components/schemas/PhoneProviderNameEnum"
    },
    "disabled": {
      "type": "boolean",
      "description": "Whether the provider is enabled (false) or disabled (true)."
    },
    "credentials": {
      "$ref": "#/components/schemas/PhoneProviderCredentials"
    },
    "configuration": {
      "$ref": "#/components/schemas/PhoneProviderConfiguration"
    }
  }
}