Returns a list of project users.
The list supports pagination and sorting:
sort parameter only supports the created field (use created for ascending, -created for descending).userIDuserIDs (max 1000)webauthnIDs (max 1000)identifierValue and identifierType togetheridentifierValues and identifierType together (max 1000)Filtering rules:
userID, userIDs, webauthnIDs, or identifier filtersuserID and userIDs are mutually exclusiveidentifierValue and identifierValues are mutually exclusiveidentifierType must be providedBasic authentication is used to authenticate requests to the Backend API. The username is the project ID and the password is the API secret.
The project ID and API secret can be found in the Developer Panel.
Filter by specific user ID (format usr-<number>). Cannot be used together with userIDs.
"usr-4693224802260150919"
Filter by multiple user IDs (comma-separated). Cannot be used together with userID, webauthnIDs, or identifier filters. Maximum 1000 IDs.
[
"usr-4693224802260150919",
"usr-1234567890123456789"
]Filter by user IDs matching the given pattern. Supports % as a wildcard character. Cannot be used together with other filter types.
"usr-%"
Filter by multiple WebAuthn IDs (comma-separated). Cannot be used together with other filter types. Maximum 1000 IDs.
["abc123def456", "xyz789ghi012"]Filter by identifier value (email, phone, or username). Must be used together with identifierType. Cannot be used together with identifierValues.
Filter by multiple identifier values (comma-separated). Must be used together with identifierType. Cannot be used together with identifierValue. Maximum 1000 values.
Type of identifier to filter by. Must be used together with identifierValue or identifierValues.
email, phone, username "email"
Filter by user status.
active, pending, disabled, deleted "active"
Sort field. Only created is supported.
+created for ascending order-created for descending order+created, -created "-created"
Whether to include login identifiers in the response. Defaults to true.
The page number to retrieve for paginated results.
1
The number of items to return per page. Useful for pagination.
20