List platform users
GET /api/v1/users Select code sample Fetch cURL
const url = 'https://localhost:8080/api/v1/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/users \ --header 'Authorization:
'
Return a paginated list of platform users, optionally filtered by active status; restricted to organization owners
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ” limit integerNumber of users to return (default: 100, max: 500)
offset integerNumber of users to skip
active booleanFilter by active status
Responses
Section titled “ Responses ”200
Section titled “200 ”List of users
Media type application/json object pagination object limit integer offset integer total integer users Array