API Guide

Table Of Contents
/api/GroupService/GroupTypes(Id)
This URI represents a group type within the collection.
GET method for GroupTypes(Id)
This method returns the details of a specific group from the collection.
Description Returns the details of a specific group.
Privilege VIEW
HTTP response
codes
200
Example
response body
{
"@odata.context": "$metadata#GroupService.GroupType/$entity",
"@odata.id": "/api/GroupService/GroupTypes(1000)",
"Id": 1000,
"Name": "Internal Group",
"Description": "Internal group. This type is associated with a task
operation."
}
Table 115. Attributes
Attribute name Description
Id ID of the group type.
Name Name of the group type.
Description Description of the group type.
/api/GroupService/MembershipTypes
This URI represents the membership types.
GET method for MembershipTypes
This method returns all the membership types.
Description
Returns all membership types.
Privilege VIEW
HTTP response
codes
200
Example
response body
{
"@odata.context": "$metadata#Collection(GroupService.MembershipType)",
"@odata.count": 2,
"value": [
{
"@odata.id": "/api/GroupService/MembershipTypes(12)",
"Id": 12,
"Name": "Static",
"Description": "Static type"
},
{
Groups 331