Actions
List Users
List all users in the 1Password account.

Preview this Workflow on desktop
Was this page helpful?
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
| Parameter | Description |
|---|---|
| Account ID | The ID of the 1Password account. |
| Filter | The expression to filter users by. Examples: user.isActive() , user.isSuspended() |
| Page Size | The maximum number of users to return per page. |
| Page Token | The page token to retrieve the next page of results. |
| Return All Pages | Automatically fetch all resources, page by page. |
{
"results": [
{
"id": "USER1234567890ABCDEF12",
"email": "example1@example.com",
"display_name": "Example1 Name",
"state": "ACTIVE",
"create_time": "2024-01-15T10:30:00Z",
"path": "accounts/ACCOUNT123/users/USER1234567890ABCDEF12"
}
],
"next_page_token": "CAIQAg"
}
Was this page helpful?