GET api/OperatorGroups/GetOperatorGroup/{id}
Gets Operator Group's details. Only the role of administrator has access.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id |
Id of the operator group |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
GetOperatorGroupResultName | Description | Type | Additional information |
---|---|---|---|
Id |
Operator group id |
integer |
None. |
Name |
The name |
string |
None. |
Description |
The description |
string |
None. |
Users |
The users' ids in the operator group |
Collection of string |
None. |
Response Formats
application/json, text/json
Sample:
{ "Id": 1, "Name": "Operator group", "Description": null, "Users": [ "96780f19-9ec1-4b86-bd28-0937cb067bbf" ] }
application/xml, text/xml
Sample:
<GetOperatorGroupResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RequestorApiDataStructures.Results"> <Description i:nil="true" /> <Id>1</Id> <Name>Operator group</Name> <Users xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:string>96780f19-9ec1-4b86-bd28-0937cb067bbf</d2p1:string> </Users> </GetOperatorGroupResult>