Auth0 · Schema

CreateBrandingPhoneProviderRequestContent

Phone provider configuration schema

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

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

JSON Schema

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