New Call: getTransactions

We've released a new API call getTransactions. This allows users to pull their SkuVault transactions similar to how our Transaction History report behaves in the UI. You can filter by warehouse, date, transaction type (All, Add, Remove, or Pick), and Transaction Reasons.

JSON Example

Here's an example of the JSON request and response:

{
    "WarehouseID": null,
    "FromDate": "2000-01-02T03:45:06.7654321Z",
    "ToDate":"2000-01-09T03:45:06.7654321Z",
    "PageNumber": 0,
    "PageSize": 1000,
    "TransactionType":"",
    "TransactionReasons":[],
    "ExcludeTransactionReasons":[],
    "TenantToken": "{{tenantToken}}",
    "UserToken": "{{userToken}}"
}
{
  "Transactions": [
    {
      "User": "[email protected]",
      "Sku": "product1",
      "Code": "4000000075",
      "ScannedCode": "4000000075",
      "Title": "String",
      "Quantity": 1,
      "QuantityBefore": 798,
      "QuantityAfter": 797,
      "Location": "A1--WH1",
      "TransactionType": "Pick",
      "TransactionReason": "",
      "TransactionNote": "",
      "TransactionDate": "2016-10-26T14:29:47.2372507Z"
    }
  ],
  "Errors": []
}

Also new to our documentation is the Reports section in which getTransactions falls under.

Changelog