List of delivery services
List of supported delivery services.
Request for activated delivery services:
GET /couriers/enabled
Request for all available delivery services:
GET /couriers
Example of a successful response
The response will return an array of Courier objects
{
"code": 200,
"payload": [
{
"id": 1,
"name": "USPS",
"logo": "https://pkge.net/uploads/couriers/small/usps@2x.png",
"extra_fields": [],
"extra_fields_tip": null,
"website_link": "https://www.usps.com",
"slug": "usps"
},
{
"id": 7,
"name": "China Post",
"logo": "https://pkge.net/uploads/couriers/small/china-post@2x.png",
"extra_fields": [],
"extra_fields_tip": null,
"website_link": "http://english.chinapost.com.cn/",
"slug": "china-post"
},
//.....
]
}