List Users
Operation ID: listUsers
List storage users in the storage tenant
Request
URI
GET
https://{api_host}/osis/api/v1/tenants/{tenantId}/users
COPY
Path Parameters
string
tenantId
Required
The ID of the storage tenant which the listed users belongs to
Query Parameters
integer
offset
Optional
The start index of users to return
integer
limit
Optional
Maximum number of users to return
Responses
200
Storage users in the storage tenant are returned
Returns PageOfUsers of type(s) application/json
{
"items": [
{
"user_id": "rachelw",
"canonical_user_id": "68fb0f20-4a0c-4036-a584-cc3ee421093f",
"tenant_id": "bb8287a9-874e-46d2-abbd-58278e1ac046",
"active": false,
"username": "string",
"email": "[email protected]",
"role": "string",
"cd_user_id": "rachelw",
"cd_tenant_id": "40b97e3c-c3b1-4251-b7de-e9637324683f"
}
],
"page_info": {
"limit": 0,
"offset": 0,
"total": 0
}
}