Get group

GET/scim/{connection_id}/groups/{id}

Parameters

connection_idstring required
ID of the connection
idstring required
ID of the Group

Returns

idstring
The group's unique id
externalIdstring
A groups id in an external system
displayNamestring required
The group's display name
groupTypestring
Organization [NOT STANDARD]
members array
An array of members
schemas enum array
Valid values:
"urn:ietf:params:scim:schemas:core:2.0:Group"
Array of schema URIs
const options = {
  method: 'GET',
  url: 'https://api.unified.to/scim/5de520f96e439b002043d8dc/groups/5de520f96e439b002043d8d8',
  headers: {
    authorization: 'bearer .....'
  },

};

const results = await axios.request(options);
Are we missing anything? Let us know
Was this page helpful?