Lists all users for the workspace
Returns
List
import Fragment from '@fragment-dev/ts-node';
const client = new Fragment();
const users = await client.users.list();
console.log(users.data);{
"data": [
{
"id": "user_abc123",
"externalId": "user_ext_123",
"role": "admin"
}
]
}Returns Examples
{
"data": [
{
"id": "user_abc123",
"externalId": "user_ext_123",
"role": "admin"
}
]
}