POST api/CampaignTool/GetCampaignLeadRemovalRules
Request Information
URI Parameters
None.
Body Parameters
SearchCampaignDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| PageIndex | integer |
None. |
|
| Pagesize | integer |
None. |
|
| SortBy | string |
None. |
|
| SortOrder | string |
None. |
|
| SearchCompaign | string |
None. |
|
| CampaignId | integer |
None. |
|
| CampaignIds | Collection of integer |
None. |
|
| UserId | integer |
None. |
|
| Status | integer |
None. |
|
| triggerTypeId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"PageIndex": 1,
"Pagesize": 2,
"SortBy": "sample string 3",
"SortOrder": "sample string 4",
"SearchCompaign": "sample string 5",
"CampaignId": 6,
"CampaignIds": [
1,
2
],
"UserId": 7,
"Status": 8,
"triggerTypeId": 9
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of CampaignLeadRemovalDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| CampaignId | integer |
None. |
|
| Disabled | boolean |
None. |
|
| RemoveTypeId | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"CampaignId": 2,
"Disabled": true,
"RemoveTypeId": 4
},
{
"Id": 1,
"CampaignId": 2,
"Disabled": true,
"RemoveTypeId": 4
}
]