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": [
"018a2310-a181-44c1-b914-d0ab7a7bdb00",
"cf1fc3ca-addb-4a3d-b08c-1c057fa7d3d0"
],
"UserId": "272bc025-c3f1-42a6-a987-39b0a04306fe",
"TenantId": "9eccad20-7124-45e7-bf71-67ff2009c2bf",
"DeliveryDateTimeStart": "2026-08-28T13:33:03.4481265+00:00",
"DeliveryDateTimeEnd": "2026-08-28T13:33:03.4481265+00:00",
"OrderId": "c6b74bfb-9e0b-48c4-abc9-499faa6818bf"
}
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>2026-08-28T13:33:03.4481265+00:00</DeliveryDateTimeEnd>
<DeliveryDateTimeStart>2026-08-28T13:33:03.4481265+00:00</DeliveryDateTimeStart>
<Ids xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>018a2310-a181-44c1-b914-d0ab7a7bdb00</d2p1:guid>
<d2p1:guid>cf1fc3ca-addb-4a3d-b08c-1c057fa7d3d0</d2p1:guid>
</Ids>
<OrderId>c6b74bfb-9e0b-48c4-abc9-499faa6818bf</OrderId>
<TenantId>9eccad20-7124-45e7-bf71-67ff2009c2bf</TenantId>
<UserId>272bc025-c3f1-42a6-a987-39b0a04306fe</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.