URL

https://devwebapi.leadmaster.com/api/LMWebAPI/UpdateCustomFormRecord?RECDNO={RECDNO}&FormID={FormID}&ChildRecordID={ChildRecordID}&access_token={access_token}

Description

Update Custom Form Record in leadmaster

HttpMethod

POST

Request Information

Parameters

NameDescriptionAdditional information
apiobject
No documentation available.

Define this parameter in the request body.

RECDNO
No documentation available.

Define this parameter in the request URI.

FormID
No documentation available.

Define this parameter in the request URI.

ChildRecordID
No documentation available.

Define this parameter in the request URI.

access_token
Token required for the authentication.

Define this parameter in the request URI.

Request body formats

application/json, text/json

Sample:
[
  {
    "QuestionID": 1,
    "Value": "sample string 2"
  },
  {
    "QuestionID": 1,
    "Value": "sample string 2"
  },
  {
    "QuestionID": 1,
    "Value": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfAPICustomFormObject xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApplication1.Controllers">
  <APICustomFormObject>
    <QuestionID>1</QuestionID>
    <Value>sample string 2</Value>
  </APICustomFormObject>
  <APICustomFormObject>
    <QuestionID>1</QuestionID>
    <Value>sample string 2</Value>
  </APICustomFormObject>
  <APICustomFormObject>
    <QuestionID>1</QuestionID>
    <Value>sample string 2</Value>
  </APICustomFormObject>
</ArrayOfAPICustomFormObject>

application/x-www-form-urlencoded

Sample:

Sample not available.

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>