Benchmark Email · Example Payload

Create Contact List

POST /Contact/ - Creates a new contact list in Benchmark Email

Email MarketingCampaignsContactsAutomationTransactional EmailMarketing

Create Contact List 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": "Create a new contact list",
  "description": "POST /Contact/ - Creates a new contact list in Benchmark Email",
  "request": {
    "method": "POST",
    "url": "https://clientapi.benchmarkemail.com/Contact/",
    "headers": {
      "AuthToken": "YOUR_API_TOKEN",
      "Content-Type": "application/json"
    },
    "body": {
      "Data": {
        "Name": "Monthly Newsletter Subscribers",
        "Description": "Subscribers to our monthly newsletter",
        "Status": 1
      }
    }
  },
  "response": {
    "status": 200,
    "body": {
      "Response": {
        "Status": "Success",
        "Data": {
          "ID": 123456,
          "Name": "Monthly Newsletter Subscribers",
          "Description": "Subscribers to our monthly newsletter",
          "TotalContacts": 0,
          "CreatedDate": "2026-06-13T00:00:00Z"
        }
      }
    }
  }
}