GET api/LeadCapture/Get
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of Lead| Name | Description | Type | Additional information |
|---|---|---|---|
| AppName | string |
None. |
|
| FirstName | string |
None. |
|
| LastName | string |
None. |
|
| string |
None. |
||
| Comment | string |
None. |
|
| LeadXML | string |
None. |
|
| Id | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"AppName": "sample string 1",
"FirstName": "sample string 2",
"LastName": "sample string 3",
"Email": "sample string 4",
"Comment": "sample string 5",
"LeadXML": "sample string 6",
"Id": 7
},
{
"AppName": "sample string 1",
"FirstName": "sample string 2",
"LastName": "sample string 3",
"Email": "sample string 4",
"Comment": "sample string 5",
"LeadXML": "sample string 6",
"Id": 7
}
]
application/xml, text/xml
Sample:
<ArrayOfLead xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model">
<Lead>
<AppName>sample string 1</AppName>
<Comment>sample string 5</Comment>
<Email>sample string 4</Email>
<FirstName>sample string 2</FirstName>
<Id>7</Id>
<LastName>sample string 3</LastName>
<LeadXML>sample string 6</LeadXML>
</Lead>
<Lead>
<AppName>sample string 1</AppName>
<Comment>sample string 5</Comment>
<Email>sample string 4</Email>
<FirstName>sample string 2</FirstName>
<Id>7</Id>
<LastName>sample string 3</LastName>
<LeadXML>sample string 6</LeadXML>
</Lead>
</ArrayOfLead>