Campaigns can be created and programmed on the platform or programmatically via API.
Sends can be tracked from two dedicated API endpoints:
/campaigns/{id}/sends/{send_id}: to track a particular send order/campaigns/{id}/sends: to track all send orders for a campaign
Tracking sends
To track a specific send, it is essential to have the send order identifier, obtained following the send trigger call if it is a trigger campaign. (POST /v1/campaigns/{id}/sends)
To track all the sends of a campaign (trigger or tactical), you must first retrieve the campaign identifier. This can be obtained when creating the campaign (POST /v1/campaigns) via the dedicated call, or by consulting information on all campaigns (GET /v1/campaigns).
Conclusion
Campaign dispatch tracking is possible at any time and allows you to follow the progress of campaign dispatches in real time.
Further reading: