GET api/Admin/CreditAccount/{creditAccountId}/MiscField
Returns the all available misc field values for a given Country
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| creditAccountId |
Primary identifier for the Credit Account |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
CreditAccountMiscViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| CreditAcocunt | ICreditAccount |
None. |
|
| MiscFields | Dictionary of string [key] and Object [value] |
None. |
Response Formats
application/xml, text/xml
Sample:
<CreditAccountMiscViewModel>
<CreditAcocunt />
<MiscFields>
<KeyValuePairOfStringObject>
<Key>sample string 1</Key>
<Value />
</KeyValuePairOfStringObject>
<KeyValuePairOfStringObject>
<Key>sample string 3</Key>
<Value />
</KeyValuePairOfStringObject>
</MiscFields>
</CreditAccountMiscViewModel>
application/json, text/json
Sample:
{
"MiscFields": {
"sample string 1": {},
"sample string 3": {}
}
}