POST api/campaigns/search
Request Information
URI Parameters
None.
Body Parameters
CampaignCriteriaDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| CampaignTypeId | globally unique identifier |
None. |
|
| CampaignName | string |
None. |
|
| CompanyId | globally unique identifier |
None. |
|
| CompanyName | string |
None. |
|
| StartDate | date |
None. |
|
| EndDate | date |
None. |
|
| IsDeleted | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": "01239bb5-60df-4858-9e8e-2a638b795d10",
"CampaignTypeId": "eb10d5de-a412-465c-b644-7ac6e5acb2fd",
"CampaignName": "sample string 1",
"CompanyId": "422ca6f5-73ff-4637-b135-5236b0bb2f85",
"CompanyName": "sample string 2",
"StartDate": "2026-01-10T00:56:50.584398+00:00",
"EndDate": "2026-01-10T00:56:50.584398+00:00",
"IsDeleted": true
}
application/xml, text/xml
Sample:
<CampaignCriteriaDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aardvark.EventManagement.Models"> <CampaignName>sample string 1</CampaignName> <CampaignTypeId>eb10d5de-a412-465c-b644-7ac6e5acb2fd</CampaignTypeId> <CompanyId>422ca6f5-73ff-4637-b135-5236b0bb2f85</CompanyId> <CompanyName>sample string 2</CompanyName> <EndDate>2026-01-10T00:56:50.584398+00:00</EndDate> <Id>01239bb5-60df-4858-9e8e-2a638b795d10</Id> <IsDeleted>true</IsDeleted> <StartDate>2026-01-10T00:56:50.584398+00:00</StartDate> </CampaignCriteriaDto>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.