Group resource data model
/Group
Dictionary table
The diagran service model of the object: http://www.soffid.org/doc/console/2.9.0/uml/com/soffid/iam/api/Group.html
Soffid allows you to add customized data to the group object. You can do that on metadata option:
It is allowed to consult all the Group definition using the Schema query:
http://<your-domain>/webservice/scim2/v1/Schemas/urn:soffid:com.soffid.iam.api.Group
Full JSON example
Request
http://<your-server>/webservice/scim2/v1/Group/83
Response
{
"organizational": false,
"meta": {
"location": "http://<your-server>/webservice/scim2/v1/Group/83",
"links": {
"members": "http://<your-server>/webservice/scim2/v1/User?filter=primaryGroup+eq+'world'+or secondaryGroup.group.name+eq+'world'",
"administrators": "http://<your-server>/webservice/scim2/v1/RoleAccount?filter=group.name+eq+'world'"
},
"resourceType": "Group"
},
"quota": "0",
"schemas": [
"urn:soffid:com.soffid.iam.api.Group"
],
"name": "world",
"obsolete": false,
"description": "World Original",
"attributes": {},
"id": 83
}