Log In

Similar to getting contacts, we need a POST endpoint in order to create contacts into the integration if they don't exist already. It should include a email field and any of the following fields that we support:

  1. Name, First Name, and/or Last Name
  2. Email Address
  3. Company Name
  4. Title
  5. LinkedIn URL
  6. Source → 'Interseller'

An example request to the integration from Interseller would look like:

POST /contacts

{
  "name": "Steven Lu",
  "email": "[email protected]",
  "company_name": "Interseller",
  "title": "CEO"
  "linkedin_url": "https://linkedin.com/in/stevenlu"
  "source": "Interseller"
}

Please let us know the structure and format of the body for the request so we can replicate it to the endpoint. If you support custom fields, please give us an endpoint to obtain those fields with key and label. Details for said endpoint included below.