Get Paginated Org Users Info
Get response encapsulating organization users.
Fetched page is according to the page start and page limit passed as optional parameters. Defaults to page size of 20 and start from the first page. Note that pageStart
is 1-based index.
We are currently not supporting the optional serviceDefinitionId
which is to filter users having access to a service in CSP.
orgId
serviceDefinitionId
pageStart
pageLimit
Authorization
csp-auth-token
default response
{
"results": [
{
"user": {
"username": "string",
"firstName": "string",
"lastName": "string",
"domain": "string",
"idpId": "string",
"accessible": false
},
"orgId": "string",
"organizationRoles": [
{
"id": "string",
"name": "string",
"displayName": "string",
"membershipType": "string"
}
],
"serviceRoles": [
{
"serviceDefinitionId": "string",
"serviceRoles": [
{
"roleName": "string",
"roleDisplayName": "string",
"membershipType": "string"
}
]
}
]
}
],
"nextLink": "string",
"prevLink": "string",
"totalResults": 0
}
URL to the next page of results.
URL to the previous page of result.
The total number of results on all pages.