Auth0 · Schema
LinkUserIdentityRequestContent
AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM
Properties
| Name | Type | Description |
|---|---|---|
| provider | object | Identity provider of the secondary user account being linked. |
| connection_id | string | connection_id of the secondary user account being linked when more than one `auth0` database provider exists. |
| user_id | object | |
| link_with | string | JWT for the secondary account being linked. If sending this parameter, `provider`, `user_id`, and `connection_id` must not be sent. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/LinkUserIdentityRequestContent",
"title": "LinkUserIdentityRequestContent",
"type": "object",
"additionalProperties": false,
"minProperties": 1,
"properties": {
"provider": {
"$ref": "#/components/schemas/UserIdentityProviderEnum",
"description": "Identity provider of the secondary user account being linked."
},
"connection_id": {
"type": "string",
"description": "connection_id of the secondary user account being linked when more than one `auth0` database provider exists.",
"pattern": "^con_[A-Za-z0-9]{16}$"
},
"user_id": {
"$ref": "#/components/schemas/UserId"
},
"link_with": {
"type": "string",
"description": "JWT for the secondary account being linked. If sending this parameter, `provider`, `user_id`, and `connection_id` must not be sent.",
"default": "{SECONDARY_ACCOUNT_JWT}"
}
}
}