Auth0 · Schema

GetSelfServiceProfileResponseContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
id string The unique ID of the self-service Profile.
name string The name of the self-service Profile.
description string The description of the self-service Profile.
user_attributes array List of attributes to be mapped that will be shown to the user during the Self-Service Enterprise Configuration flow.
created_at string The time when this self-service Profile was created.
updated_at string The time when this self-service Profile was updated.
branding object
allowed_strategies array List of IdP strategies that will be shown to users during the Self-Service Enterprise Configuration flow. Possible values: [`oidc`, `samlp`, `waad`, `google-apps`, `adfs`, `okta`, `auth0-samlp`, `okta
user_attribute_profile_id string ID of the user-attribute-profile to associate with this self-service profile.
View JSON Schema on GitHub

JSON Schema

auth0-getselfserviceprofileresponsecontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GetSelfServiceProfileResponseContent",
  "title": "GetSelfServiceProfileResponseContent",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "id": {
      "type": "string",
      "description": "The unique ID of the self-service Profile.",
      "default": "ssp_n7SNCL8seoyV1TuSTCnAeo"
    },
    "name": {
      "type": "string",
      "description": "The name of the self-service Profile."
    },
    "description": {
      "type": "string",
      "description": "The description of the self-service Profile."
    },
    "user_attributes": {
      "type": "array",
      "description": "List of attributes to be mapped that will be shown to the user during the Self-Service Enterprise Configuration flow.",
      "items": {
        "$ref": "#/components/schemas/SelfServiceProfileUserAttribute"
      }
    },
    "created_at": {
      "type": "string",
      "description": "The time when this self-service Profile was created.",
      "default": "2021-01-01T00:00:00.000Z",
      "format": "date-time"
    },
    "updated_at": {
      "type": "string",
      "description": "The time when this self-service Profile was updated.",
      "default": "2021-01-01T00:00:00.000Z",
      "format": "date-time"
    },
    "branding": {
      "$ref": "#/components/schemas/SelfServiceProfileBrandingProperties"
    },
    "allowed_strategies": {
      "type": "array",
      "description": "List of IdP strategies that will be shown to users during the Self-Service Enterprise Configuration flow. Possible values: [`oidc`, `samlp`, `waad`, `google-apps`, `adfs`, `okta`, `auth0-samlp`, `okta-samlp`, `keycloak-samlp`, `pingfederate`]",
      "minItems": 1,
      "items": {
        "$ref": "#/components/schemas/SelfServiceProfileAllowedStrategyEnum"
      }
    },
    "user_attribute_profile_id": {
      "type": "string",
      "description": "ID of the user-attribute-profile to associate with this self-service profile.",
      "format": "user-attribute-profile-id",
      "x-release-lifecycle": "EA"
    }
  }
}