POST api/leadpulse/exclusions
Exclude a property from LeadPulse, this will stop it from being included in the leadpulse filter. Processes this lead pulse API request. The parameter and response sections describe the data exchanged with the API.
Request Information
URI Parameters
None.
Body Parameters
The lead pulse filter exclusions data contract supplied with the request.
LeadPulseFilterExclusionsDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| LeadPulseFilterId |
The unique identifier of the related lead pulse filter resource. |
integer |
None. |
| Exclusions |
The collection of exclusions. |
Collection of integer |
None. |
Request Formats
application/x-www-form-urlencoded
Sample:
Sample not available.
application/json, text/json
Sample:
{
"LeadPulseFilterId": 1,
"Exclusions": [
1,
2
]
}
Response Information
Resource Description
201 Created if successful, or 409 Conflict if already excluded
IHttpActionResultNone.
Response Formats
application/json, text/json
Sample:
Sample not available.