List external users from IDP
GET /api/v1/external-users Select code sample Fetch cURL
const url = 'https://localhost:8080/api/v1/external-users';const options = {method: 'GET', headers: {Authorization: '
'}}; try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}
curl --request GET \ --url https://localhost:8080/api/v1/external-users \ --header 'Authorization:
'
Get a list of users from the configured identity provider (e.g., Keycloak, Auth0), showing which users exist in the IDP but may not yet exist in the platform
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ” limit integerNumber of users to return (default: 100, max: 100)
offset integerNumber of users to skip
email stringFilter by email address
username stringFilter by username
Responses
Section titled “ Responses ”200
Section titled “200 ”List of external users
Media type application/json object pagination object limit integer offset integer provider object name string type string total integer users Array