Create group

POST/scim/{connection_id}/groups

Parameters

connection_idstring required
ID of the connection

Payload

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

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: 'POST',
  url: 'https://api.unified.to/scim/5de520f96e439b002043d8dc/groups',
  headers: {
    authorization: 'bearer .....'
  },
  data: undefined,

};

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