Auth0 · Schema

CreateBrandingPhoneProviderResponseContent

Phone provider configuration schema

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
id string
tenant string The name of the tenant
name object
channel object
disabled boolean Whether the provider is enabled (false) or disabled (true).
configuration object
created_at string The provider's creation date and time in ISO 8601 format
updated_at string The date and time of the last update to the provider in ISO 8601 format
View JSON Schema on GitHub

JSON Schema

auth0-createbrandingphoneproviderresponsecontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateBrandingPhoneProviderResponseContent",
  "title": "CreateBrandingPhoneProviderResponseContent",
  "type": "object",
  "description": "Phone provider configuration schema",
  "additionalProperties": false,
  "required": [
    "name",
    "credentials"
  ],
  "properties": {
    "id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 255
    },
    "tenant": {
      "type": "string",
      "description": "The name of the tenant",
      "minLength": 1,
      "maxLength": 255
    },
    "name": {
      "$ref": "#/components/schemas/PhoneProviderNameEnum"
    },
    "channel": {
      "$ref": "#/components/schemas/PhoneProviderChannelEnum"
    },
    "disabled": {
      "type": "boolean",
      "description": "Whether the provider is enabled (false) or disabled (true)."
    },
    "configuration": {
      "$ref": "#/components/schemas/PhoneProviderConfiguration"
    },
    "created_at": {
      "type": "string",
      "description": "The provider's creation date and time in ISO 8601 format",
      "maxLength": 27,
      "format": "date-time"
    },
    "updated_at": {
      "type": "string",
      "description": "The date and time of the last update to the provider in ISO 8601 format",
      "maxLength": 27,
      "format": "date-time"
    }
  }
}