API Guide
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 111. 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"
},
{
"@odata.id": "/api/GroupService/MembershipTypes(24)",
"Id": 24,
"Name": "Dynamic",
"Description": "Dynamic type"
}
]
}
Table 112. Attributes
Attribute name Description
Id ID of the membership type.
Name Name of the membership type.
Description Description of the membership type.
Groups 295