GET api/rep/{RepDID}/MiscField

Returns the all available misc field values for a given Representative

Request Information

URI Parameters

NameDescriptionTypeAdditional information
RepDID

Primary identifier for the Rep

string

Required

Body Parameters

None.

Response Information

Resource Description

Dictionary of string [key] and Object [value]

Response Formats

application/xml, text/xml

Sample:
<DictionaryOfStringObject>
  <KeyValuePairOfStringObject>
    <Key>sample string 1</Key>
    <Value />
  </KeyValuePairOfStringObject>
  <KeyValuePairOfStringObject>
    <Key>sample string 3</Key>
    <Value />
  </KeyValuePairOfStringObject>
</DictionaryOfStringObject>

application/json, text/json

Sample:
{
  "sample string 1": {},
  "sample string 3": {}
}