# Create Auth0 external user source Create a new external user source. A valid environment token is required to call this endpoint. Endpoint: POST /resources/user-sources/v1/external/auth0 Security: bearer ## Request fields (application/json): - `name` (string, required) The user source name - `configuration` (object, required) User source configuration - `configuration.syncOnLogin` (boolean, required) Whether to sync user profile attributes on each login - `configuration.isMigrated` (boolean, required) Whether to migrate the users - `configuration.domain` (string, required) the auth0 domain - `configuration.clientId` (string, required) the auth0 application clientId - `configuration.secret` (string, required) the auth0 application secret - `configuration.tenantConfig` (any, required) - `appIds` (array) The application Ids to assign to this user source - `index` (number, required) The user source index - `description` (string) The user source description ## Response 201 fields (application/json): - `id` (string, required) - `name` (string, required) - `type` (string, required) - `appIds` (array, required) - `description` (string, required) - `index` (number, required)