Logo
30-day challenge API Documentation

Get all user resources

GET https://api.getpostman.com/scim/v2/Users

Gets information about all Qodex team members.

 

Body PARAM

Key Datatype Required Description 
startIndex
string The index entry by which to begin the list of returned results.
count
string Limit the number of results returned in a single response. By default, the system returns a list of 100 users.
filter
string Filter results by a specific word or phrase. For example, user the `userName eq "user%40example.com"` value to filter for the `user@example.com` username.



HEADERS

Key Datatype Required Description 
Authorization
string




RESPONSES

status OK

{ "schemas": [ "urn:ietf:params:scim:api:messages:2.0:ListResponse" ], "totalResults": 2, "startIndex": 1, "itemsPerPage": 1, "Resources": [ { "schemas": [ "urn:ietf:params:scim:schemas:core:2.0:User" ], "id": "405775fe15ed41872a8eea4c8aa2b38cda9749812cc55c99", "userName": "taylor-lee@example.com", "name": { "givenName": "Taylor", "familyName": "Lee" }, "externalId": "12345678", "active": true, "meta": { "resourceType": "User", "created": "2021-02-22T04:24:13.000Z", "lastModified": "2021-02-22T04:24:13.000Z" } } ] }



Curl
curl -X GET 'https://api.getpostman.com/scim/v2/Users?startIndex=<integer>&count=<integer>&filter=<string>' -H 'Authorization: undefined'

ENDPOINTS