URL

https://devwebapi.leadmaster.com/api/LMWebAPI/GetCustomFormList?access_token={access_token}

Description

Get Custom Form List in leadmaster

HttpMethod

GET

Request Information

Parameters

NameDescriptionAdditional information
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:
[
  {
    "formIDField": 1,
    "formNameField": "sample string 2",
    "formTypeField": "sample string 3"
  },
  {
    "formIDField": 1,
    "formNameField": "sample string 2",
    "formTypeField": "sample string 3"
  },
  {
    "formIDField": 1,
    "formNameField": "sample string 2",
    "formTypeField": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfTypeCustomFormList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApplication1.LMService">
  <TypeCustomFormList>
    <formIDField>1</formIDField>
    <formNameField>sample string 2</formNameField>
    <formTypeField>sample string 3</formTypeField>
  </TypeCustomFormList>
  <TypeCustomFormList>
    <formIDField>1</formIDField>
    <formNameField>sample string 2</formNameField>
    <formTypeField>sample string 3</formTypeField>
  </TypeCustomFormList>
  <TypeCustomFormList>
    <formIDField>1</formIDField>
    <formNameField>sample string 2</formNameField>
    <formTypeField>sample string 3</formTypeField>
  </TypeCustomFormList>
</ArrayOfTypeCustomFormList>