Auth0 · Schema

UpdateCustomDomainRequestContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
tls_policy object recommended includes TLS 1.2
custom_client_ip_header object
domain_metadata object
relying_party_identifier stringnull Relying Party ID (rpId) to be used for Passkeys on this custom domain. Set to null to remove the rpId and fall back to using the full domain.
View JSON Schema on GitHub

JSON Schema

auth0-updatecustomdomainrequestcontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateCustomDomainRequestContent",
  "title": "UpdateCustomDomainRequestContent",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "tls_policy": {
      "$ref": "#/components/schemas/CustomDomainTlsPolicyEnum",
      "description": "recommended includes TLS 1.2"
    },
    "custom_client_ip_header": {
      "$ref": "#/components/schemas/CustomDomainCustomClientIpHeader"
    },
    "domain_metadata": {
      "$ref": "#/components/schemas/DomainMetadata"
    },
    "relying_party_identifier": {
      "type": [
        "string",
        "null"
      ],
      "description": "Relying Party ID (rpId) to be used for Passkeys on this custom domain. Set to null to remove the rpId and fall back to using the full domain.",
      "maxLength": 255,
      "format": "hostname"
    }
  }
}