POST api/v2/agentlead

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
agentLeadCreateModel
No documentation available.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "BBrId": "sample string 1",
  "Name": "sample string 2",
  "Email": "sample string 3",
  "Phone": "sample string 4",
  "Sales1Year": true,
  "Assesment": true,
  "Type": 7,
  "AgentLeadAgents": [
    {
      "AgentRegId": 1
    },
    {
      "AgentRegId": 1
    },
    {
      "AgentRegId": 1
    }
  ],
  "Estimate": 1.1
}

application/xml, text/xml

Sample:
<AgentLeadCreateModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Boliga.Web.API.V2.Models.AgentLeads">
  <AgentLeadAgents>
    <AgentLeadAgent>
      <AgentRegId>1</AgentRegId>
    </AgentLeadAgent>
    <AgentLeadAgent>
      <AgentRegId>1</AgentRegId>
    </AgentLeadAgent>
    <AgentLeadAgent>
      <AgentRegId>1</AgentRegId>
    </AgentLeadAgent>
  </AgentLeadAgents>
  <Assesment>true</Assesment>
  <BBrId>sample string 1</BBrId>
  <Email>sample string 3</Email>
  <Estimate>1.1</Estimate>
  <Name>sample string 2</Name>
  <Phone>sample string 4</Phone>
  <Sales1Year>true</Sales1Year>
  <Type>7</Type>
</AgentLeadCreateModel>

application/x-www-form-urlencoded

Sample:

Sample not available.