Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
graphql
query ListUsers { listUsers { ok activeUsers { uid name email accountType } invitedUsers { email accountType inviteStatus } } }
json
{ "data": { "listUsers": { "ok": true, "activeUsers": [ { "uid": "string", "name": "string", "email": "string", "accountType": "ADMIN" } ], "invitedUsers": [ { "email": "string", "accountType": "ADMIN", "inviteStatus": "SENT" } ] } } }
List all active users and invited users.
listUsers: ListUsers
Related topics