Auth0 · Schema
UpdateSelfServiceProfileRequestContent
AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The name of the self-service Profile. |
| description | object | |
| 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_attributes | object | |
| user_attribute_profile_id | stringnull | ID of the user-attribute-profile to associate with this self-service profile. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/UpdateSelfServiceProfileRequestContent",
"title": "UpdateSelfServiceProfileRequestContent",
"type": "object",
"additionalProperties": false,
"minProperties": 0,
"properties": {
"name": {
"type": "string",
"description": "The name of the self-service Profile.",
"minLength": 1,
"maxLength": 100
},
"description": {
"$ref": "#/components/schemas/SelfServiceProfileDescription"
},
"branding": {
"$ref": "#/components/schemas/SelfServiceProfileBranding"
},
"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_attributes": {
"$ref": "#/components/schemas/SelfServiceProfileUserAttributes"
},
"user_attribute_profile_id": {
"type": [
"string",
"null"
],
"description": "ID of the user-attribute-profile to associate with this self-service profile.",
"format": "user-attribute-profile-id",
"x-release-lifecycle": "EA"
}
}
}