Benchmark Email · Example Payload

Send Campaign

POST /Emails/{ID}/Schedule - Schedules an email campaign for delivery

Email MarketingCampaignsContactsAutomationTransactional EmailMarketing

Send Campaign is an example object payload from Benchmark Email, with 4 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

exampledescriptionrequestresponse

Example Payload

Raw ↑
{
  "example": "Schedule an email campaign",
  "description": "POST /Emails/{ID}/Schedule - Schedules an email campaign for delivery",
  "request": {
    "method": "POST",
    "url": "https://clientapi.benchmarkemail.com/Emails/456789/Schedule",
    "headers": {
      "AuthToken": "YOUR_API_TOKEN",
      "Content-Type": "application/json"
    },
    "body": {
      "Data": {
        "ScheduleDate": "2026-06-14T09:00:00Z",
        "ListIDs": [123456],
        "SegmentIDs": []
      }
    }
  },
  "response": {
    "status": 200,
    "body": {
      "Response": {
        "Status": "Success",
        "Data": {
          "EmailID": 456789,
          "Status": "Scheduled",
          "ScheduleDate": "2026-06-14T09:00:00Z"
        }
      }
    }
  }
}