POST api/Campaigns/SetCampaignDeliveryDate

Saves the delivery date for a campaign.

Request Information

URI Parameters

None.

Body Parameters

The model specifying the delivery date to save.

TargetCampaignDateDto
NameDescriptionTypeAdditional information
CampaignId

globally unique identifier

None.

DeliverAsap

boolean

None.

DeliveryDateTime

date

None.

CalculateLeadTime

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "CampaignId": "5ed3af5b-8aaa-4368-b150-72465d8ad3b2",
  "DeliverAsap": true,
  "DeliveryDateTime": "2025-12-06T02:31:45.848637+00:00",
  "CalculateLeadTime": true
}

application/xml, text/xml

Sample:
<TargetCampaignDateDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aardvark.Target.Models">
  <CalculateLeadTime>true</CalculateLeadTime>
  <CampaignId>5ed3af5b-8aaa-4368-b150-72465d8ad3b2</CampaignId>
  <DeliverAsap>true</DeliverAsap>
  <DeliveryDateTime>2025-12-06T02:31:45.848637+00:00</DeliveryDateTime>
</TargetCampaignDateDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.