GET
/
hubs
/
{hub_id}
/
users
List End 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<ulid>
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

OK

The response is of type object.