Entity Description:
The GroupLabel entity identifies a distribution Group by name.
Properties
| Name | Description | Type | Additional Information |
| ID | String | ||
| Label | String |
Entity Statement
if you are using versions earlier than 5.0, substitute "ssv3" for "api" for each Request listed below.
| Creating a GroupLabel | |
| Request | |
| POST /api/odata/GroupLabels | |
| Content-Type | |
| application/json | |
| Request body | |
| { "ID":"0","Label":"New Group Label" } | |
| Response body | |
| { "ID":"1","Label":"New Group Label" } | |
| Deleting a GroupLabel | |
| Request | |
| DELETE /api/odata/GroupLabels(1) | |
| Response Headers | |
| HTTP/1.1 204 No Content | |
| Getting a GroupLabel | |
| Request | |
| GET /api/odata/GroupLabels(1) | |
| Content-Type | |
| application/json | |
| Response body | |
| { "ID":"1","Label":"New Group Label" } | |
| Updating a GroupLabel | |
| Request | |
| PUT /api/odata/GroupLabels(1) | |
| Content-Type | |
| application/json | |
| Request body | |
| { "ID":"0","Label":"New Group Label" } | |
| Response Headers | |
| HTTP/1.1 204 No Content | |
| Getting all GroupLabels | |
| Request | |
| GET /api/odata/GroupLabels | |
| Content-Type | |
| application/json | |
| Response body | |
| "value":[{ "ID":"0","Label":"New Group Label" },{ "ID":"1","Label":"New Group Label" }] | |