This endpoints allows retrieveal, creation, modification and deletion of Suppliers in Warehouze.
Call requires at least one property name, blank query is allowed.
| Name | Type | Description | Updatable |
|---|---|---|---|
| CurrencyCode | String | False | |
| String | False | ||
| GroupId | Int32 | False | |
| Id | Int32 | False | |
| Name | String | False | |
| Notes | String | False | |
| Number | String | False | |
| PoMinimumAmount | Decimal | False | |
| PoMinimumQty | Decimal | False |
var request = { Token: "Insert your token here", Query: [ "Id=1", ], Properties: [ Id, Number, Name ], }; $.ajax({ url: "https://api.warehouze.io/Supplier", data: request, dataType: 'text', type: "GET", traditional: true, success: function (data) { console.log(data); }, error: function (data, xHr) { console.log(data); console.log(xHr); } });