POST Api/Lead/SearchLead
Request Information
URI Parameters
None.
Body Parameters
LeadSearch| Name | Description | Type | Additional information |
|---|---|---|---|
| skip | integer |
None. |
|
| take | integer |
None. |
|
| orderBy | string |
None. |
|
| desc | boolean |
None. |
|
| Search | string |
None. |
|
| StatusId | integer |
None. |
|
| StageId | integer |
None. |
|
| LoggedInUserId | integer |
None. |
|
| SourceId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"skip": 1,
"take": 1,
"orderBy": "sample string 1",
"desc": true,
"Search": "sample string 3",
"StatusId": 4,
"StageId": 5,
"LoggedInUserId": 6,
"SourceId": 7
}
application/xml, text/xml
Sample:
<LeadSearch xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Netsoft.Web.Api.ViewModel"> <LoggedInUserId>6</LoggedInUserId> <Search>sample string 3</Search> <SourceId>7</SourceId> <StageId>5</StageId> <StatusId>4</StatusId> <desc>true</desc> <orderBy>sample string 1</orderBy> <skip>1</skip> <take>1</take> </LeadSearch>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |