Skip to main content
List all users in the 1Password account.

Parameters

ParameterDescription
Account IDThe ID of the 1Password account.
FilterThe expression to filter users by.

Examples: user.isActive() , user.isSuspended()
Page SizeThe maximum number of users to return per page.
Page TokenThe page token to retrieve the next page of results.
Return All PagesAutomatically fetch all resources, page by page.

Example Output

{
	"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"
}

Workflow Library Example

List Users with 1Password Users and Send Results Via Email
Workflow LibraryPreview this Workflow on desktop