Get users List
GET/seb-api/v1/users
Retrieve a list of users.
Request
Query Parameters
Number of users to return.
Include deleted users.
Filter by user name.
Filter by user email.
Filter by first seen time or after.
Filter by last seen time or before.
An optional opaque string that defines from where to start listing
Possible values: [user.name
, user.email
, user.first_seen
, user.last_seen
]
The field to sort by.
Possible values: [asc
, desc
]
The sort order.
Responses
- 200
- 400
- 500
A list of users with pagination info
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- Array [
- ]
- ]
data object[]
Deleted Time
Device IDs
External identifier
First seen time
Unique identifier
Last seen time
Name
Profile Picture URL
Possible values: [saml
, local
, oidc
]
Provider
userGroups object[]
User Groups
Created at
Unique identifier
Last updated
Name
Possible values: [sso
, local
]
Provider
pageInfo object
When paginating forwards, the cursor to continue.
When paginating forwards, are there more items?
{
"data": [
{
"deletedTime": "2024-07-29T15:51:28.071Z",
"deviceIds": [
"string"
],
"email": "string",
"externalId": "string",
"firstSeen": "2024-07-29T15:51:28.071Z",
"id": "string",
"lastSeen": "2024-07-29T15:51:28.071Z",
"name": "string",
"profilePictureURL": "string",
"provider": "saml",
"userGroups": [
{
"createdAt": "2024-07-29T15:51:28.071Z",
"id": "string",
"lastUpdated": "2024-07-29T15:51:28.071Z",
"name": "string",
"provider": "sso"
}
]
}
],
"pageInfo": {
"cursor": "string",
"hasNextPage": true
}
}
Bad request
Internal server error