cURL
curl --request GET \ --url https://api.opal.dev/v1/owners/{owner_id}/users \ --header 'Authorization: Bearer <token>'
{ "users": [ { "user_id": "29827fb8-f2dd-4e80-9576-28e31e9934ac", "email": "[email protected]", "full_name": "John Doe", "first_name": "John", "last_name": "Doe", "position": "Engineer" } ] }
Gets the list of users for this owner, in escalation priority order if applicable.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The ID of the owner.
The users for this owner.
A list of users.
Show child attributes
The ID of the user.
"h0z968412-2451-4bbd-42h4-057l715d917m"
The email of the user.
"[email protected]"
The full name of the user.
"John Doe"
The first name of the user.
"John"
The last name of the user.
"Doe"
The user's position.
"Senior Engineer"
User status pulled from an HR/IDP provider.
ACTIVE
SUSPENDED
DEPROVISIONED
DELETED
NOT_FOUND
"ACTIVE"
Was this page helpful?