Skip to main content
GET
/
owners
/
{owner_id}
/
users
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": "john.doe@company.dev",
      "full_name": "John Doe",
      "first_name": "John",
      "last_name": "Doe",
      "position": "Engineer"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

owner_id
string<uuid>
required

The ID of the owner.

Response

200 - application/json

The users for this owner.

A list of users.

users
object[]
required