Path Parameters
Query Parameters
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.
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"
}
]
}
ListEndUsers returns a paginated list of all the End Users for the given Hub.
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"
}
]
}
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.