Cancel a Scheduled Send

If you don’t want to send a scheduled message, cancel it. For example, if an email message contains outdated or incorrect information, cancel it to prevent it from being sent.

Sample SOAP Envelope 

This code example shows how to cancel a single instance of a scheduled send.

1<s:Envelope
2  xmlns:s="http://www.w3.org/2003/05/soap-envelope"
3  xmlns:a="http://schemas.xmlsoap.org/ws/2004/08/addressing"
4  xmlns:u="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
5  <s:Header>
6    <a:Action s:mustUnderstand="1">Perform</a:Action>
7    <a:To s:mustUnderstand="1">https://YOUR_SUBDOMAIN.soap.marketingcloudapis.com/Service.asmx</a:To>
8    <fueloauth xmlns="http://exacttarget.com">YOUR_ACCESS_TOKEN</fueloauth>
9  </s:Header>
10  <s:Body
11    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
12    xmlns:xsd="http://www.w3.org/2001/XMLSchema">
13    <PerformRequestMsg xmlns="http://exacttarget.com/wsdl/partnerAPI">
14      <Options></Options>
15      <Action>cancel</Action>
16      <Definitions>
17        <Definition xsi:type="Send">
18          <ModifiedDate xsi:nil="true"></ModifiedDate>
19          <ID>29605</ID>
20          <ObjectID xsi:nil="true"></ObjectID>
21          <NumberSent xsi:nil="true"></NumberSent>
22          <NumberDelivered xsi:nil="true"></NumberDelivered>
23          <SentDate xsi:nil="true"></SentDate>
24        </Definition>
25      </Definitions>
26    </PerformRequestMsg>
27  </s:Body>
28</s:Envelope>