POST api/leads/qualify
Request Information
URI Parameters
None.
Body Parameters
QualifyLeadModel| Name | Description | Type | Additional information |
|---|---|---|---|
| LeadId | integer |
None. |
|
| Industry | string |
None. |
|
| FacilityType | string |
None. |
|
| IsIndustrialFacility | boolean |
None. |
|
| HasLikelyBoiler | boolean |
None. |
|
| HasLikelyChiller | boolean |
None. |
|
| HasCentralHvac | boolean |
None. |
|
| BoilerPotentialScore | integer |
None. |
|
| ChillerPotentialScore | integer |
None. |
|
| AmcPotentialScore | integer |
None. |
|
| FacilityScaleScore | integer |
None. |
|
| QualificationReason | string |
None. |
|
| ClassificationSource | string |
None. |
|
| Notes | string |
None. |
|
| AssignedEmployeeId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"LeadId": 1,
"Industry": "sample string 2",
"FacilityType": "sample string 3",
"IsIndustrialFacility": true,
"HasLikelyBoiler": true,
"HasLikelyChiller": true,
"HasCentralHvac": true,
"BoilerPotentialScore": 8,
"ChillerPotentialScore": 9,
"AmcPotentialScore": 10,
"FacilityScaleScore": 11,
"QualificationReason": "sample string 12",
"ClassificationSource": "sample string 13",
"Notes": "sample string 14",
"AssignedEmployeeId": 1
}
application/xml, text/xml
Sample:
<QualifyLeadModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BizBook.NewModels"> <AmcPotentialScore>10</AmcPotentialScore> <AssignedEmployeeId>1</AssignedEmployeeId> <BoilerPotentialScore>8</BoilerPotentialScore> <ChillerPotentialScore>9</ChillerPotentialScore> <ClassificationSource>sample string 13</ClassificationSource> <FacilityScaleScore>11</FacilityScaleScore> <FacilityType>sample string 3</FacilityType> <HasCentralHvac>true</HasCentralHvac> <HasLikelyBoiler>true</HasLikelyBoiler> <HasLikelyChiller>true</HasLikelyChiller> <Industry>sample string 2</Industry> <IsIndustrialFacility>true</IsIndustrialFacility> <LeadId>1</LeadId> <Notes>sample string 14</Notes> <QualificationReason>sample string 12</QualificationReason> </QualifyLeadModel>
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. |