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

POS Cart

transactionid Type:String Read only:False The unique identifier of the transaction
location Type:String Read only:False Optional store location
customer * Type:POS Customer Read only:False Details of a customer associated with this order
items* Type:POS Item[] Read only:False Array of ordered items
notes Type:String Read only:False Optional transaction notes
totalpaid * Type:Decimal Read only:False The total amount paid
paymentreference Type:String Read only:False Optional payment reference

Example

{
  "transactionid": "TRANS123",
  "location": "421",
  "customer": {
    "name": {
      "title": "Mr",
      "firstname": "Test",
      "surname": "Customer"
    },
    "company": "",
    "address": {
      "addressline1": "20-22 Wenlock Road",
      "addressline2": "",
      "addressline3": "",
      "towncity": "",
      "stateprovince": "London",
      "postalcode": "N1 7GU",
      "country": "GB"
    },
    "email": "[email protected]",
    "numbers": [
      "02030869860"
    ]
  },
  "items": [
    {
      "sku": "200099-0536",
      "quantity": 1,
      "unitprice": 54.17,
      "unittax": 10.83
    }
  ],
  "notes": "Sample Notes",
  "totalpaid": 65.00,
  "paymentreference": "RECEIPT123"
}