If your Integration supports adding Contacts to a list Interseller can add them automatically when a customer adds them to an Interseller sequence.

Some examples of lists include:

  • Jobs
  • Job Postings
  • Projects
  • Pipeline Stages

We will need two endpoints for this functionality. One to get ID's for your lists your customer has created. The second is to tie the contact to the list.

GET /jobs

{
  "jobs": [
		{
			"name": "Senior Developer",
			"id": "7956yv02anehlhbey3o87yghfo"
		},
		{
			"name": "Head of HR",
			"id": "76qgerv7956yvey3o87yghfo09"
		},
	]
}

POST /contact/addToJob

{
	"contact_id": "mlmkm456ponj47ndbj9w784thv",
	"job_id": "7956yv02anehlhbey3o87yghfo"
}