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 the status of an order

GET/orders/status/{id or ordernumber}

Gets information about the current status of a specific order.

Parameters id or ordernumber The unique id/number of the order

Example response

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

{
  "id": "56409ed246fc580098b88604",
  "name": "Complete"
}

Update the status of an order

PUT/orders/status/{id or ordernumber}

Updates the status of a specific order.

Parameters id or ordernumber The unique id/number of the order
Request body Order Status

Example request

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

{
  "name": "Complete"
}

Example response

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

{
  "updated": 1
}