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

Retrieve all product meta data

GET/store/productmeta

Gets information about all product meta data within your store catalog.

Querystring count The number of records to return
offset The number of records from a collection to skip

Example response

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

{
  "total": 1730,
  "count": 2,
  "offset": 0,
  "results": [
    {
      "id": "57753ec5d68995a0f8a8b3b9",
      "name": "A Dream Is A Wish Wall Sticker",
      "title": "A Dream Is A Wish Wall Sticker | Sample Store",
      "description": "Brighten up your bedroom wall with our 'Dream is a wish your heart makes' wall sticker",
      "keywords": ""
    },
    {
      "id": "57a481gh46cb351f6c2f9476",
      "name": "Abbot Mattress",
      "title": "Abbot Mattress | Sample Store",
      "description": "1,200 pocket springs coupled with a mix of soft, breathable layers",
      "keywords": ""
    }
  ]
}

Lookup a specific product meta data

GET/store/productmeta/{id}

Gets information about a specific product meta data from within your store catalog.

Parameters id The unique id for the product

Example response

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

{
  "id": "57753ec5d68995a0f8a8b3b9",
  "name": "A Dream Is A Wish Wall Sticker",
  "title": "A Dream Is A Wish Wall Sticker | Sample Store",
  "description": "Brighten up your bedroom wall with our 'Dream is a wish your heart makes' wall sticker",
  "keywords": ""
}

Update product meta data

PUT/store/productmeta

Updates the meta data for a specified products.

Request body Product Meta Data[]

Example request

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

[
  {
    "id": "57753ec5d68995a0f8a8b3b9",
    "name": "A Dream Is A Wish Wall Sticker",
    "title": "A Dream Is A Wish Wall Sticker | My Store",
    "description": "Brighten up your bedroom wall with our 'Dream is a wish your heart makes' wall sticker",
    "keywords": "wall sticker, dreams, bedroom"
  },
  {
    "id": "57a481gh46cb351f6c2f9476",
    "name": "Abbot Mattress",
    "title": "Abbot Mattress | My Store",
    "description": "1,200 pocket springs coupled with a mix of soft, breathable layers",
    "keywords": "pocket sprung, mattress"
  }
]

Example response

HTTP/1.1 200 OK

{
  "updated": 2
}