POST api/Campaigns/Select
Retrieves a list of campaigns that match the given criteria.
Request Information
URI Parameters
None.
Body Parameters
The criteria model to filter campaigns by.
TargetCampaignFilterCriteria| Name | Description | Type | Additional information |
|---|---|---|---|
| Ids | Collection of globally unique identifier |
None. |
|
| UserId | globally unique identifier |
None. |
|
| TenantId | globally unique identifier |
None. |
|
| DeliveryDateTimeStart | date |
None. |
|
| DeliveryDateTimeEnd | date |
None. |
|
| OrderId | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"Ids": [
"b1a7888c-a555-4911-b870-9181ad49c488",
"8ca599cb-db55-401e-b92c-3b09cad1d5df"
],
"UserId": "94c6510f-93f5-4b16-8a60-64c4f386e6ce",
"TenantId": "f23803b0-c0b8-41f5-8baf-29f37fccf217",
"DeliveryDateTimeStart": "2025-12-06T04:19:26.1922886+00:00",
"DeliveryDateTimeEnd": "2025-12-06T04:19:26.1922886+00:00",
"OrderId": "a1a44994-3f24-40fd-be78-eca4a102b69c"
}
application/xml, text/xml
Sample:
<TargetCampaignFilterCriteria xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aardvark.Target.Models.FilterCriteria">
<DeliveryDateTimeEnd>2025-12-06T04:19:26.1922886+00:00</DeliveryDateTimeEnd>
<DeliveryDateTimeStart>2025-12-06T04:19:26.1922886+00:00</DeliveryDateTimeStart>
<Ids xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>b1a7888c-a555-4911-b870-9181ad49c488</d2p1:guid>
<d2p1:guid>8ca599cb-db55-401e-b92c-3b09cad1d5df</d2p1:guid>
</Ids>
<OrderId>a1a44994-3f24-40fd-be78-eca4a102b69c</OrderId>
<TenantId>f23803b0-c0b8-41f5-8baf-29f37fccf217</TenantId>
<UserId>94c6510f-93f5-4b16-8a60-64c4f386e6ce</UserId>
</TargetCampaignFilterCriteria>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.