Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

To activate this integration for your account, contact our team and provide a mapping for the data you will send and the fields you want to use in the integration. The fields will be mapped to Salesmanago fields.

Upserting Salesmanago contact

This integration allows you to create or update existing contact in Salesmanago. The fields presented are the most common ones, some additional fields are available.

Endpoint

[POST] https://htpfdjhk3h.execute-api.eu-west-1.amazonaws.com/Production/contacts

...

Code Block
languagejs
{
	data: {
		email: String,
		fax: String,
		name: String,
		phone: String,
		company: String,
		streetAddress: String,
		zipCode: String,
		city: String,
		country: String		
	},
   	group_key: String
}

Deleting Salesmanago contact

...

This integration creates an event in Salesmanago. Up to 20 details can be added to an event.

Endpoint

[POST] https://htpfdjhk3h.execute-api.eu-west-1.amazonaws.com/Production/events

...

Code Block
languagejs
{
data:{
	email : String,
	description: String,
	products: String,
	location: String,
	value: Float,
	contactExtEventType: [PURCHASE, CART, VISIT, PHONE_CALL, OTHER, RESERVATION, CANCELLED, ACTIVATION, MEETING, OFFER, DOWNLOAD, LOGIN, TRANSACTION],
	externalId: String,
	shopDomain: String,
	detail1: String,
	detail2: String,
	detail3: String,
	detail4: String,
	detail5: String,
	detail6: String,
	detail7: String,
	detail8: String,
	detail9: String,
	detail10: String
},
group_key: String
}

...

This integration sets the products on the salesmango salesmanago feed

Endpoint

[POST] https://htpfdjhk3h.execute-api.eu-west-1.amazonaws.com/Production/products

...