Customers
A customer is a registered partner of eWarehousing. Customers hold information such as orders, stock and inbounds. Note: a customer is not a addressee of an order.
Customer resource
Properties
idstringreadonly
Unique UUID identifier for the customer resource.
codestring
namestring
GET Collection
Retrieves a collection of customers.
Query parameters
limitint
Limits the amount of results
pageint
Only works in combination with limit
fromstring
Accepts date format %Y-%m-%d. IE: 2022-10-22
tostring
Accepts date format %Y-%m-%d. IE: 2022-10-22
directionstring
asc|desc
Example
1curl --location --request GET 'https://eu-dev.middleware.ewarehousing-solutions.com/wms/customers/''Response
1[2 {3 "id": "be62c27e-2aac-4ac1-902e-f770d64f8dce",4 "code": "EWHS",5 "name": "eWarehousing Solutions"6 },7 {8 "id": "f190900a-ebfd-4262-9dd6-05ddd61721b0",9 "code": "ACM",10 "name": "Acme"11 }12]GET Single
Retrieves a single customer.
1curl --location --request GET 'https://eu-dev.middleware.ewarehousing-solutions.com/wms/customers/f190900a-ebfd-4262-9dd6-05ddd61721b0'Response
1{2 "id": "f190900a-ebfd-4262-9dd6-05ddd61721b0",3 "code": "ACM",4 "name": "Acme"5}