POST api/LeadAllocation/RejectLead
Request Information
URI Parameters
None.
Body Parameters
Collection of MdlLead| Name | Description | Type | Additional information |
|---|---|---|---|
| Lead_Id | string |
None. |
|
| Caller_Id | integer |
None. |
|
| User_Id | string |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"Lead_Id": "sample string 1",
"Caller_Id": 2,
"User_Id": "sample string 3"
},
{
"Lead_Id": "sample string 1",
"Caller_Id": 2,
"User_Id": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfMdlLead xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/INH_Insurance_MVC.Controllers">
<MdlLead>
<Caller_Id>2</Caller_Id>
<Lead_Id>sample string 1</Lead_Id>
<User_Id>sample string 3</User_Id>
</MdlLead>
<MdlLead>
<Caller_Id>2</Caller_Id>
<Lead_Id>sample string 1</Lead_Id>
<User_Id>sample string 3</User_Id>
</MdlLead>
</ArrayOfMdlLead>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
integerResponse Formats
application/json, text/json
Sample:
1
application/xml, text/xml
Sample:
<int xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</int>