GetWorkspaceUsersArgs
type GetWorkspaceUsersArgs = {
cursor?: string | null;
limit?: number;
workspaceId?: number | null;
};
Arguments for getting workspace users (paginated).
Properties
cursor?
optional cursor: string | null;
Cursor for pagination.
limit?
optional limit: number;
Maximum number of users to return (default: 100).
workspaceId?
optional workspaceId: number | null;
Optional workspace ID. If not provided, returns users for all workspaces.