GET Groups/Get/{ID}

Gets a specific Group by ID

Request Information

URI Parameters

NameDescriptionTypeAdditional information
ID

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

GroupDTO
NameDescriptionTypeAdditional information
Name

Name

string

None.

Deleted

Gets or sets the indicator to specify if Network Group is deleted

boolean

None.

ApprovalRequired

Gets or sets the indicator if network Group requires Approval

boolean

None.

ID

globally unique identifier

None.

Timestamp

Collection of byte

None.

Response Formats

application/json, text/json

Sample:
{
  "results": [
    {
      "Name": "sample string 1",
      "Deleted": true,
      "ApprovalRequired": true,
      "ID": "53429234-c256-4a75-bb7c-7cca2104ee48",
      "Timestamp": "QEA="
    }
  ]
}

text/javascript

Sample:
{"results":[{"Name":"sample string 1","Deleted":true,"ApprovalRequired":true,"ID":"53429234-c256-4a75-bb7c-7cca2104ee48","Timestamp":"QEA="}]}

application/bson

Sample:
Binary JSON content. See http://bsonspec.org for details.

application/xml, text/xml

Sample:
<GroupDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Lpp.Dns.DTO">
  <ID xmlns="http://schemas.datacontract.org/2004/07/Lpp.Objects">53429234-c256-4a75-bb7c-7cca2104ee48</ID>
  <Timestamp xmlns="http://schemas.datacontract.org/2004/07/Lpp.Objects">QEA=</Timestamp>
  <ApprovalRequired>true</ApprovalRequired>
  <Deleted>true</Deleted>
  <Name>sample string 1</Name>
</GroupDTO>