ListResponse[UserResponse]
Paginated response containing User Response records. The required field is items.
items object[]required
List of resource items
Array [
id object
anyOf
- string
- null
string
nameName (string)required
emailstring<email>required
Email address
alias object
anyOf
- string
- null
string
categoryCategory (string)
Default value:
usertype object
anyOf
- string
- null
string
groupsstring[]
Group ID list
tagsstring[]
created_at object
anyOf
- integer
- null
integer
updated_at object
anyOf
- integer
- null
integer
providerProvider (string)
Auth provider (local or oidc)
Possible values: [local, oidc]
Default value:
localexternal_id object
OIDC external user ID
- string
- null
string
synced_at object
anyOf
- integer
- null
integer
is_activeIs Active (boolean)
Whether the account is active
Default value:
truedisplay_name object
User-override display name
- string
- null
string
avatar_config object
Stored avatar configuration as a JSON object, or null when no configuration is set.
- object
- null
object
avatar_url object
Signed proxy URL for the uploaded avatar image, or null when no avatar image has been uploaded.
- string
- null
string
itemItem (string)requireddeprecated
]
next_cursor object
Cursor for next page
- string
- null
string
has_moreHas More (boolean)
Whether more pages exist
Default value:
falseListResponse[UserResponse]
{
"items": [
{
"id": "string",
"name": "string",
"email": "user@example.com",
"alias": "string",
"category": "user",
"type": "string",
"groups": [
"string"
],
"tags": [
"string"
],
"created_at": 0,
"updated_at": 0,
"provider": "local",
"external_id": "string",
"synced_at": 0,
"is_active": true,
"display_name": "string",
"avatar_config": {},
"avatar_url": "string"
}
],
"next_cursor": "string",
"has_more": false
}