Auth0 · Schema
CreateImportUsersRequestContent
AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM
Properties
| Name | Type | Description |
|---|---|---|
| users | string | |
| connection_id | string | connection_id of the connection to which users will be imported. |
| upsert | boolean | Whether to update users if they already exist (true) or to ignore them (false). |
| external_id | string | Customer-defined ID. |
| send_completion_email | boolean | Whether to send a completion email to all tenant owners when the job is finished (true) or not (false). |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CreateImportUsersRequestContent",
"title": "CreateImportUsersRequestContent",
"type": "object",
"additionalProperties": true,
"required": [
"users",
"connection_id"
],
"properties": {
"users": {
"type": "string",
"contentMediaType": "application/octet-stream"
},
"connection_id": {
"type": "string",
"description": "connection_id of the connection to which users will be imported.",
"default": "con_0000000000000001",
"pattern": "^con_[A-Za-z0-9]{16}$"
},
"upsert": {
"type": "boolean",
"description": "Whether to update users if they already exist (true) or to ignore them (false).",
"default": false
},
"external_id": {
"type": "string",
"description": "Customer-defined ID."
},
"send_completion_email": {
"type": "boolean",
"description": "Whether to send a completion email to all tenant owners when the job is finished (true) or not (false).",
"default": true
}
}
}