Divendo API 2.0

We’ve rebuilt our API from the ground up to be easier than ever to integrate our platform with your favourite software

Lookup a contacts interests

GET/contacts/{id}/interests

Gets interests connected to a specific contact within your store.

Parameters id The unique id for the contact

Example response

HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8

[
  "Art & Stationers",
  "Mens Fashion",
  "Toys & Hobbies"
]

Update a contacts interests

PUT/contacts/{id}

Updates the interests of a specific contact.

Parameters id The unique id for the contact
Request body string[]

Example request

Content-Type: application/json; charset=utf-8

[
  "Art & Stationers",
  "Mens Fashion",
  "Sport",
  "Toys & Hobbies"
]

Example response

HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8

{
  updated: 1
}