GET Response/GetResponseGroupsByRequestID?requestID={requestID}

Get the response groups for the specified request.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
requestID

The ID of the request to get the response groups for.

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

Collection of ResponseGroupDTO
NameDescriptionTypeAdditional information
Name

Name

string

None.

ID

globally unique identifier

None.

Timestamp

Collection of byte

None.

Response Formats

application/json, text/json

Sample:
{
  "results": [
    {
      "Name": "sample string 1",
      "ID": "46f2445a-6570-43d7-926e-a1901bc3ca87",
      "Timestamp": "QEA="
    },
    {
      "Name": "sample string 1",
      "ID": "46f2445a-6570-43d7-926e-a1901bc3ca87",
      "Timestamp": "QEA="
    }
  ]
}

text/javascript

Sample:
{"results":[{"Name":"sample string 1","ID":"46f2445a-6570-43d7-926e-a1901bc3ca87","Timestamp":"QEA="},{"Name":"sample string 1","ID":"46f2445a-6570-43d7-926e-a1901bc3ca87","Timestamp":"QEA="}]}

application/bson

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

application/xml, text/xml

Sample:
<ArrayOfResponseGroupDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Lpp.Dns.DTO">
  <ResponseGroupDTO>
    <ID xmlns="http://schemas.datacontract.org/2004/07/Lpp.Objects">46f2445a-6570-43d7-926e-a1901bc3ca87</ID>
    <Timestamp xmlns="http://schemas.datacontract.org/2004/07/Lpp.Objects">QEA=</Timestamp>
    <Name>sample string 1</Name>
  </ResponseGroupDTO>
  <ResponseGroupDTO>
    <ID xmlns="http://schemas.datacontract.org/2004/07/Lpp.Objects">46f2445a-6570-43d7-926e-a1901bc3ca87</ID>
    <Timestamp xmlns="http://schemas.datacontract.org/2004/07/Lpp.Objects">QEA=</Timestamp>
    <Name>sample string 1</Name>
  </ResponseGroupDTO>
</ArrayOfResponseGroupDTO>