Skip to main content

Retrieve All Users

Retrieve all users.

Parameters

ParameterDescription
FilterFilter users by the given query. Filters can only apply to a subset of attribute fields within the user object:

- displayName
- userName
- active

The syntax of the filter query looks like the following:

- active eq true - will return all active users
- displayName sw "t" - will return all users that start with the letter t

For a full list of the allowed operations, visit the SCIM parameters documentation.

Example Output

{
"schemas": [
"urn:scim:schemas:core:1.0"
],
"totalResults": 8,
"Resources": [
{
"id": "644cdfb54c02c713008b9a06",
"userName": "johndoe@test.com",
"displayName": "test123",
"active": true,
"meta": {
"created": "2023-04-29T09:13:25.477Z",
"location": "https://api.bigpanda.io/resources/v1.0/scim/Users/b710e234d8f6a2c123456789"
},
"roles": [],
"phoneNumbers": []
},
{
"id": "644a80d7abf4ec9e056280d9",
"userName": "foo@test.com",
"displayName": "foo",
"active": true,
"meta": {
"created": "2023-04-27T14:04:07.922Z",
"location": "https://api.bigpanda.io/resources/v1.0/scim/Users/b710e234d8f6a2c123456789"
},
"roles": [
"admin"
],
"phoneNumbers": []
}
]
}

Workflow Library Example

Retrieve All Users with Bigpanda and Send Results Via Email

Workflow LibraryPreview this Workflow on desktop