No results found
- Utilities
-
Accounting
- Accounting Period
- Accounting Period Lock
- All transaction statement
- Currency
- Customer Payment
- Exchange Rate
- Journal
- Journal Entry
- Nominal Code
- Payment Method
- Purchase Credit
- Purchase Invoice
- Purchase Payment
- Purchase Payment Total
- Sale Payment Total
- Sales Credit
- Sales Invoice
- Sales Receipt
- Sales Receipt (deprecated)
- Supplier Payment
- Tax Code
- Contact
- Integration
- Order
-
Product
- Brand
- Brightpearl Category
- Channel
- Channel brand
- Collection
- Discount contact usage
- Discount total usage
- Option
- Option Value
- Price List
- Product Primary Supplier
- Product
- Product Bundle
- Product Custom Field
- Custom Field Metadata
- Custom Field
- product-group
- Product Identity
- Product option value
- Product Price
- Product Supplier
- Product Type
- Product Type Option Association
- Season
-
Warehouse
- Asset Value Correction
- Bundle Availability
- Default Location
- Drop-Ship Note
- Drop-Ship Note Event
- External Transfer
- Fulfilment Source
- Order fulfilment status
- Goods-In Note Correction
- Goods-In Note
- Goods Movement
- Goods-Out Note
- Goods-Out Note Event
- Internal Transfer
- Location
- Pick
- Product Availability
- Quarantine Location
- Quarantine Release
- Reservation
- Reservation Row
- Reservations
- Shipping Method
- Stock Correction
- Stock Transfer
- Warehouse
- Warehouse Defaults
- Zone
Shipping Method GET
URI
https://{DATACENTER}.brightpearl.com/public-api/{ACCOUNT}
/warehouse-service/shipping-method/{ID-SET}
Refer to our documentation on URI syntax for more information on how to construct URIs.
Description
Returns the
Example 1
Retrieve all Shipping Method's
Request URI
/shipping-method
Response
{
"response": [
{
"id": 1,
"name": "APC",
"breaks": "1000,2000,5000,1000",
"methodType": 1,
"additionalInformationRequired": false
},
{
"id": 2,
"name": "Parcel Force",
"code": "PRCLFRC",
"breaks": "1000,2000,5000,1000",
"methodType": 1,
"additionalInformationRequired": false
},
{
"id": 4,
"name": "Other",
"breaks": "1000,2000,5000,1000",
"methodType": 1,
"additionalInformationRequired": false
},
{
"id": 5,
"name": "Target Express",
"code": "TRGREXPR1",
"breaks": "1000,2000,5000,1000",
"methodType": 1,
"additionalInformationRequired": true
}
]
}
Example 2
Retrieve Shipping Method's with Id in range 1 to 4.
Request URI
/shipping-method/1-4
Response
{
"response": [
{
"id": 1,
"name": "APC",
"breaks": "1000,2000,5000,1000",
"methodType": 1,
"additionalInformationRequired": false
},
{
"id": 2,
"name": "Parcel Force",
"code": "PRCLFRC",
"breaks": "1000,2000,5000,1000",
"methodType": 1,
"additionalInformationRequired": false
},
{
"id": 4,
"name": "Other",
"breaks": "1000,2000,5000,1000",
"methodType": 1,
"additionalInformationRequired": false
}
]
}