Get Users

GET https://core.amplitude.com/scim/1/Users?startIndex=&itemsPerPage=&filter=

Gets a list of users within Amplitude for that organization. This includes both pending and joined users, and supports pagination and filtering.

See SCIM filter syntax for help with the filter parameter.

Request Params

KeyDatatypeRequiredDescription
startIndexnull1-indexed
itemsPerPagenullNumber of items per result page.
filternullMust the SCIM filter syntax.

RESPONSES

status: OK

{"schemas":["urn:ietf:params:scim:api:messages:2.0:ListResponse"],"startIndex":1,"itemsPerPage":100,"totalResults":1,"Resources":[{"schemas":["urn:ietf:params:scim:schemas:core:2.0:User"],"id":"datamonster@amplitude.com","userName":"datamonster@amplitude.com","name":{"givenName":"data","familyName":"monster"},"active":true,"emails":[{"value":"datamonster@amplitude.com","primary":true}],"meta":{"resourceType":"User"}}]}