Get a user
Retrieve a single user by their unique identifier (UUID) in a 1Password EPM account.
| Method | Endpoint URL |
|---|---|
GET | <base_url>/v1beta1/accounts/<account_id>/users/<user_id> |
Make a request
Request headers
Include the following headers:
Authorization: Bearer <YOUR_ACCESS_TOKEN>User-Agent: <CompanyOrProductName>/<version>
Path parameters
| Name | Type | Required | Description |
|---|---|---|---|
account_id | string | Yes | The unique identifier of the 1Password EPM account. |
user_id | string | Yes | The unique identifier of the user. |
Example request
Retrieve a single user record in a 1Password EPM account.
Receive a response
A successful response returns 200 OK with a User object.
Example response
Response schemas
User object
| Field | Type | Description |
|---|---|---|
id | string | User UUID. |
email | string | User email address. |
display_name | string | User display name. |
state | string | User state. Possible values: STATE_UNSPECIFIED, ACTIVE, SUSPENDED. |
create_time | string | Date and time when the user was created. Uses the RFC 3339 standard . |
path | string | Resource path for the user. Format: accounts/<account_id>/users/<user_id>. |