GET api/CustomField?InterfaceCode={InterfaceCode}&FieldName={FieldName}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| InterfaceCode | string |
Required |
|
| FieldName | string |
Required |
Body Parameters
None.
Response Information
Resource Description
CustomFieldValue| Name | Description | Type | Additional 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"
}
application/xml, text/xml
Sample:
<SociedadContratoController.CustomFieldValue xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApiCompass.Controllers"> <ContactId>2</ContactId> <InterfaceCode>sample string 3</InterfaceCode> <InvestorId>1</InvestorId> <Name>sample string 4</Name> <Value>sample string 5</Value> </SociedadContratoController.CustomFieldValue>