User and Workspace management
List Users
Get a list of all users with membership in your organization, with their contact information, license type, and workspace roles.
You must be an organization admin to list users.
get/public/v1/users
Query parameters
countinteger
Number of elements in page.
pageinteger
Page number.
show_removedboolean
Filter option - show users with removed memberships.
Response
Page of users.
Example response
{
"results": [
{
"user_id": "ajnN7eGutJZsRKjQrNuPkh",
"email": "josh@example.com",
"first_name": "Josh",
"last_name": "Doe",
"phone_number": "+14842634627",
"license": "Full",
"workspaces": [
{
"role": "Admin",
"workspace_id": "fERpqZdFaF9dHVAeVxPFaV",
"membership_id": "vibuun3DXG8QDDLfXm27Ne"
}
]
}
]
}