GET
/
hubs
/
{hub_id}
/
users
curl --request GET \
  --url https://platform.versori.com/api/embedded/v1/hubs/{hub_id}/users
{
  "totalCount": 123,
  "next": "<string>",
  "prev": "<string>",
  "users": [
    {
      "id": "<string>",
      "externalId": "<string>",
      "displayName": "<string>",
      "hubId": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ]
}

Path Parameters

hub_id
string
required

Query Parameters

first
integer
default:20
before
string
after
string

Search is a string that is used to filter the list of End Users. The search string is matched against the id, externalId and displayName fields.

Response

200
application/json
OK
totalCount
integer
required
users
object[]
required
next
string
prev
string