GET api/users/customer/{CustomerDID}/MiscField
Returns the all available misc field values for a given Customer
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerDID |
Primary identifier for the Customer |
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": {}
}