URL
https://devwebapi.leadmaster.com/api/LMWebAPI/GetCustomFormRecord?RECDNO={RECDNO}&FormID={FormID}&ChildRecordID={ChildRecordID}&OppID={OppID}&access_token={access_token}
Description
Get Custom Form Record in leadmaster
HttpMethod
GET
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| RECDNO | RECDNO to look for the leadmaster. |
Define this parameter in the request URI. |
| FormID | FormID of the given RECORD |
Define this parameter in the request URI. |
| ChildRecordID | Token required for the authentication. |
Define this parameter in the request URI. |
| OppID | OppID for the given opportunity. |
Define this parameter in the request URI. |
| access_token | Token required for the authentication. |
Define this parameter in the request URI. |
Response Information
No documentation available.
Response body formats
application/json, text/json
Sample:
[
{
"questionIDField": 1,
"valueField": "sample string 2"
},
{
"questionIDField": 1,
"valueField": "sample string 2"
},
{
"questionIDField": 1,
"valueField": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfTypeCustomFormRecord xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApplication1.LMService">
<TypeCustomFormRecord>
<questionIDField>1</questionIDField>
<valueField>sample string 2</valueField>
</TypeCustomFormRecord>
<TypeCustomFormRecord>
<questionIDField>1</questionIDField>
<valueField>sample string 2</valueField>
</TypeCustomFormRecord>
<TypeCustomFormRecord>
<questionIDField>1</questionIDField>
<valueField>sample string 2</valueField>
</TypeCustomFormRecord>
</ArrayOfTypeCustomFormRecord>