Benchmark Email · Example Payload

Add Contact

POST /Contact/{ListID}/ContactDetails - Adds a new contact to an existing contact list

Email MarketingCampaignsContactsAutomationTransactional EmailMarketing

Add Contact 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": "Add a contact to a list",
  "description": "POST /Contact/{ListID}/ContactDetails - Adds a new contact to an existing contact list",
  "request": {
    "method": "POST",
    "url": "https://clientapi.benchmarkemail.com/Contact/123456/ContactDetails",
    "headers": {
      "AuthToken": "YOUR_API_TOKEN",
      "Content-Type": "application/json"
    },
    "body": {
      "Data": {
        "EmailAddress": "subscriber@example.com",
        "Fields": [
          {
            "FieldID": 1,
            "Value": "Jane"
          },
          {
            "FieldID": 2,
            "Value": "Doe"
          }
        ]
      }
    }
  },
  "response": {
    "status": 200,
    "body": {
      "Response": {
        "Status": "Success",
        "Data": {
          "ID": 789012,
          "EmailAddress": "subscriber@example.com",
          "Status": "Active"
        }
      }
    }
  }
}