GitHub

Shipping methods

A shipping method is used to specify what shipping party / option the order should be fulfilled with.


Shipping method resource

Properties

idstring

shipperstring

shipper_codestring

codestring

descriptionstring

shipping_softwarestring


GET Collection

Retrieves a list of shipping methods

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/shippingmethods/'

Response

1[
2 {
3 "id": "d94770bc-b236-49ec-8e31-88af42f2c282",
4 "shipper": "eWarehousing Solutions",
5 "shipper_code": "ewarehousing-solutions",
6 "code": "delivery-by-doabuy-over-20kg",
7 "description": "delivery-by-doabuy-over-20kg",
8 "shipping_software": "ewh"
9 },
10 {
11 "id": "a299249a-b2cd-4666-a6e5-77d3e1156a22",
12 "shipper": "eWarehousing Solutions",
13 "shipper_code": "ewarehousing-solutions",
14 "code": "EWH_PICK_UP",
15 "description": "eWarehousing Solutions pickup order",
16 "shipping_software": "ewh"
17 }
18]

GET Single

Retrieves a single shipping method.

1curl --location --request GET 'https://eu-dev.middleware.ewarehousing-solutions.com/wms/shippingmethods/a299249a-b2cd-4666-a6e5-77d3e1156a22/'

Response

1 {
2 "id": "a299249a-b2cd-4666-a6e5-77d3e1156a22",
3 "shipper": "eWarehousing Solutions",
4 "shipper_code": "ewarehousing-solutions",
5 "code": "EWH_PICK_UP",
6 "description": "eWarehousing Solutions pickup order",
7 "shipping_software": "ewh"
8}