GET api/GetCustomFieldValueByContact?FieldName={FieldName}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
FieldName

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of CustomFieldValue
NameDescriptionTypeAdditional information
InvestorId

integer

None.

ContactId

integer

None.

InterfaceCode

string

None.

Name

string

None.

Value

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "InvestorId": 1,
    "ContactId": 2,
    "InterfaceCode": "sample string 3",
    "Name": "sample string 4",
    "Value": "sample string 5"
  },
  {
    "InvestorId": 1,
    "ContactId": 2,
    "InterfaceCode": "sample string 3",
    "Name": "sample string 4",
    "Value": "sample string 5"
  }
]

application/xml, text/xml

Sample:
<ArrayOfInvestorController.CustomFieldValue xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ApiLMD.Controllers">
  <InvestorController.CustomFieldValue>
    <ContactId>2</ContactId>
    <InterfaceCode>sample string 3</InterfaceCode>
    <InvestorId>1</InvestorId>
    <Name>sample string 4</Name>
    <Value>sample string 5</Value>
  </InvestorController.CustomFieldValue>
  <InvestorController.CustomFieldValue>
    <ContactId>2</ContactId>
    <InterfaceCode>sample string 3</InterfaceCode>
    <InvestorId>1</InvestorId>
    <Name>sample string 4</Name>
    <Value>sample string 5</Value>
  </InvestorController.CustomFieldValue>
</ArrayOfInvestorController.CustomFieldValue>