GET Adapters/GetRequestTypeIdentifier?modelID={modelID}&processorID={processorID}

Gets the RequestType identifier and latest version for the specified model ID and processor ID.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
modelID

globally unique identifier

Required

processorID

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

RequestTypeIdentifier
NameDescriptionTypeAdditional information
Identifier

string

None.

Version

string

None.

Response Formats

application/json, text/json

Sample:
{
  "results": [
    {
      "Identifier": "sample string 1",
      "Version": "sample string 2"
    }
  ]
}

text/javascript

Sample:
{"results":[{"Identifier":"sample string 1","Version":"sample string 2"}]}

application/bson

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

application/xml, text/xml

Sample:
<RequestTypeIdentifier xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Lpp.Dns.DTO.DataMartClient">
  <Identifier>sample string 1</Identifier>
  <Version>sample string 2</Version>
</RequestTypeIdentifier>