URL
https://devwebapi.leadmaster.com/api/LMWebAPI/GetCustomFormListRecord?FormID={FormID}&access_token={access_token}
Description
Get Custom Form Record List in leadmaster
HttpMethod
GET
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| FormID | No documentation available. |
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:
[
{
"rECDNOField": 1,
"childRecordIDField": 2,
"formIDField": 3,
"formNameField": "sample string 4"
},
{
"rECDNOField": 1,
"childRecordIDField": 2,
"formIDField": 3,
"formNameField": "sample string 4"
},
{
"rECDNOField": 1,
"childRecordIDField": 2,
"formIDField": 3,
"formNameField": "sample string 4"
}
]
application/xml, text/xml
Sample:
<ArrayOfTypeCustomForm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApplication1.LMService">
<TypeCustomForm>
<childRecordIDField>2</childRecordIDField>
<formIDField>3</formIDField>
<formNameField>sample string 4</formNameField>
<rECDNOField>1</rECDNOField>
</TypeCustomForm>
<TypeCustomForm>
<childRecordIDField>2</childRecordIDField>
<formIDField>3</formIDField>
<formNameField>sample string 4</formNameField>
<rECDNOField>1</rECDNOField>
</TypeCustomForm>
<TypeCustomForm>
<childRecordIDField>2</childRecordIDField>
<formIDField>3</formIDField>
<formNameField>sample string 4</formNameField>
<rECDNOField>1</rECDNOField>
</TypeCustomForm>
</ArrayOfTypeCustomForm>