Retrieve a Send Summary by JobID

To view information about the ways that your subscribers interact with your email sends, retrieve a send summary. Use this information plan future sends based on prior performance.

When you send an email, the API returns a JobID that you can use to retrieve send statistics. This sample SOAP envelope retrieves send details based on the JobID of the 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">Retrieve</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    <RetrieveRequestMsg xmlns="http://exacttarget.com/wsdl/partnerAPI">
14      <RetrieveRequest>
15        <ObjectType>Send</ObjectType>
16        <Properties>SentDate</Properties>
17        <Properties>UniqueOpens</Properties>
18        <Properties>NumberSent</Properties>
19        <Properties>NumberDelivered</Properties>
20        <Properties>HardBounces</Properties>
21        <Properties>SoftBounces</Properties>
22        <Filter xsi:type="SimpleFilterPart">
23          <Property>ID</Property>
24          <SimpleOperator>equals</SimpleOperator>
25          <Value>12043295</Value>
26        </Filter>
27      </RetrieveRequest>
28    </RetrieveRequestMsg>
29  </s:Body>
30</s:Envelope>