- Home
- API Enriched
- Tenant And Identity
- scim
- List group based on filters.
List group based on filters.
const url = 'https://example-corp.console.ves.volterra.io/api/v1/api/production/us-east-1/namespaces/default/api/scim/namespaces/system/v2/Groups';const options = {method: 'GET', headers: {Authorization: '<Authorization>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example-corp.console.ves.volterra.io/api/v1/api/production/us-east-1/namespaces/default/api/scim/namespaces/system/v2/Groups \ --header 'Authorization: <Authorization>'List groups based on the given filter.
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Query Parameters
Section titled “Query Parameters”Filter to be used for filtering objects.
The number of entries after filter.
Start offset.
Members”]” A multi-valued list of strings indicating the names of resource attributes to be removed from the default set of attributes to return.
Responses
Section titled “Responses”A successful response.
List group objects.
object
List of available groups.
Group.
object
Display name for the group.
External ID for the group.
Unique ID for the group.
Users with unique ID.
GroupMembers.
object
URL of the users or groups.
Unique ID of the users or groups.
object
Create date. Required: YES.
Last modification date and time. Required: YES.
[x-required] location for resource.
Type of resource. Required: YES.
Version for resource type. Required: YES.
Display name for the group.
Schemas per scim spec.
ItemsPerPage The number of resources returned in a list response page
Required: YES.
Schema defined as per scim spec.
StartIndex The 1-based index of the first result in the current set of list results.
Required: YES.
TotalGroup objects available.
Examplegenerated
{ "Resources": [ { "displayName": "example", "externalId": "example", "id": "example", "members": [ { "ref": "example", "value": "example" } ], "meta": { "created": "example", "lastModified": "example", "location": "example", "resourceType": "example", "version": "example" }, "name": "example", "schemas": [ "example" ] } ], "itemsPerPage": "example", "schemas": [ "example" ], "startIndex": "example", "totalResults": "example"}Returned when operation is not authorized.
Examplegenerated
exampleReturned when there is no permission to access resource.
Examplegenerated
exampleReturned when resource is not found.
Examplegenerated
exampleReturned when operation on resource is conflicting with current value.
Examplegenerated
exampleReturned when operation has been rejected as it is happening too frequently.
Examplegenerated
exampleReturned when server encountered an error in processing API.
Examplegenerated
exampleReturned when service is unavailable temporarily.
Examplegenerated
exampleReturned when server timed out processing request.
Examplegenerated
example