Documentation index: llms.txt. This page is also available as markdown: append .md to this URL or send Accept: text/markdown.
GetUsersOutput
Response from the executed query or mutation
type GetUsersOutput {
email: String!
firstName: String!
isEmailValidated: Boolean!
id: String!
lastName: String!
role: UserRole!
status: UserStatus!
ownedAssetIds: [String!]!
teamIds: [String!]!
createdAt: Timestamp!
}
Fields
GetUsersOutput.email ● String! non-null scalar general
The email of the user
GetUsersOutput.firstName ● String! non-null scalar general
The first name of the user
GetUsersOutput.isEmailValidated ● Boolean! non-null scalar general
Whether the user has validated their email
GetUsersOutput.id ● String! non-null scalar general
The ID of the user
GetUsersOutput.lastName ● String! non-null scalar general
The last name of the user
GetUsersOutput.role ● UserRole! non-null enum users
The role of the user
GetUsersOutput.status ● UserStatus! non-null enum users
The status of the user
GetUsersOutput.ownedAssetIds ● [String!]! non-null scalar general
List of entities owned by the user
GetUsersOutput.teamIds ● [String!]! non-null scalar general
ids of the teams this user belongs to
GetUsersOutput.createdAt ● Timestamp! non-null scalar general
The date and time the user was created
Example
{
"email": "john.doe@example.com",
"firstName": "John",
"isEmailValidated": true,
"id": "fffe43cb-a92f-48d9-9527-3fcc4e5f6dba",
"lastName": "Doe",
"role": "CONTRIBUTOR",
"status": "ACTIVATED",
"ownedAssetIds": [
"fffe43cb-a92f-48d9-9527-3fcc4e5f6dba"
],
"teamIds": [
"fffe43cb-a92f-48d9-9527-3fcc4e5f6dba"
],
"createdAt": 1758555879800
}
Returned By
getUsersquery