Silverpop · Example Payload

Silverpop Add Contact Example

Example request and response for adding a contact to a Silverpop database.

Email MarketingMarketing AutomationCampaign ManagementDigital Marketing

Silverpop Add Contact Example is an example object payload from Silverpop, with 4 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

titledescriptionrequestresponse

Example Payload

Raw ↑
{
  "title": "Add Contact Example",
  "description": "Example request and response for adding a contact to a Silverpop database.",
  "request": {
    "method": "POST",
    "url": "https://api-campaign-us-1.goacoustic.com/rest/databases/12345/contacts",
    "headers": {
      "Authorization": "Bearer {access_token}",
      "Content-Type": "application/json"
    },
    "body": {
      "email": "jane.doe@example.com",
      "first_name": "Jane",
      "last_name": "Doe",
      "custom_fields": {
        "Company": "Acme Corp",
        "Title": "Marketing Director",
        "Lead_Source": "Webinar"
      }
    }
  },
  "response": {
    "status": 200,
    "body": {
      "contact_id": "987654321"
    }
  }
}