API Docs
Home
Home
Developer GuideAPI
StatusWebhooks
Developer GuideAPI
StatusWebhooks
  1. Preview shipping prices
  • Config
    • List Pickup Address
      GET
    • List Box Dimension
      GET
    • List vendor
      GET
    • List store
      GET
  • Online Product
    • Options
      • List category
      • List brand
    • Create Single Product
      POST
    • Create Product From Product Inventory
      POST
    • List product
      GET
    • Product detail
      GET
  • Product Inventory
    • Options
      • List Outbound Strategy
      • List Product Type
      • List Material
      • List Storage Method
    • List product inventory
      GET
    • Product inventory detail
      GET
    • Create single inventory product
      POST
  • Order
    • Shipping Service
      • Preview shipping prices
        • List shipping service
          POST
        • List available courier
          POST
      • List available courier from order
        POST
      • List shipping service of courier
        POST
    • Create order B2C
      POST
    • Create order B2B
      POST
    • List order
      GET
    • Order detail
      GET
    • Cancel order
      PATCH
  • Shipment
    • Create shipment auto
      POST
    • [Retail][Ship by self] Create shipment with item
      POST
    • Cancel shipment
      PATCH
    • List shipment
      GET
    • Shipment detail
      GET
    • List shipment of order
      GET
  • Shipment Inbound
    • Create shipment inbound
    • Cancel shipment inbound
    • List shipment inbound
    • Shipment inbound detail
    • Shipment inbound items
  • Order Return
    • List return order
    • Return order detail
    • Create return order
    • Cancel Return Order
  • Courier
    • List courier service integrated
    • List courier operate
    • List courier integrated
  • Address Directory
    • Province
    • District
    • Ward
  1. Preview shipping prices

List available courier

Developing
POST
/api/v1/public/orders/available-courier
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/api/v1/public/orders/available-courier' \
--header 'Authorization;' \
--header 'Content-Type: application/json' \
--data-raw '{
  "store_id": {{store_id}},
  "pickup_address_id": {{pickup_id}}
}'
Response Response Example
{
  "status_code": 200,
  "data": [
    {
      "id": 9,
      "priority": 1,
      "integration_id": 187,
      "prefix": "nandh",
      "name": "N&H Logistics",
      "description": "N&H Logistics là công ty cung cấp giải pháp Fulfillment tổng thể từ lưu kho, hoàn tất đơn hàng, vận chuyển đến quản lý hậu cần cho doanh nghiệp trên đa nền tảng.",
      "logo": "https://nh-wms.sgp1.cdn.digitaloceanspaces.com/oms/AppIcon~ios-marketing.png",
      "tracking_url": null,
      "rating": 5,
      "is_fulfill_now": false,
      "is_seller_own_fleet": false,
      "use_lib": null
    },
    {
      "id": 16,
      "priority": 2,
      "integration_id": 172,
      "courier_name": "Self-ship orders",
      "use_insurance": true,
      "can_check_content": true,
      "prefix": "sof",
      "name": "Tự Vận Chuyển (Self-ship orders)",
      "description": "Hình thức người bán tự vận chuyển cho đơn hàng của mình. Tự quản lý quá trình vận chuyển và giao hàng đối với những đơn hàng mà người bán đã nhận.",
      "logo": "https://nh-wms.sgp1.cdn.digitaloceanspaces.com/oms/delivery.png",
      "tracking_url": null,
      "rating": 4,
      "is_fulfill_now": false,
      "is_seller_own_fleet": true,
      "use_lib": null
    }
  ],
  "error": false,
  "error_code": null,
  "log_id": null,
  "messages": "",
  "total": 2
}

Request

Header Params
Authorization
string 
required
Default:
{{your_api_key_here}}
Body Params application/json
store_id
integer 
required
pickup_address_id
integer 
required
Examples

Responses

🟢200OK
application/json
Body
status_code
integer 
optional
data
array [object {15}] 
optional
id
integer 
optional
priority
integer 
optional
integration_id
integer 
optional
prefix
string 
optional
name
string 
optional
description
string 
optional
logo
string 
optional
tracking_url
string 
optional
rating
integer 
optional
is_fulfill_now
boolean 
optional
is_seller_own_fleet
boolean 
optional
use_lib
string 
optional
courier_name
string 
optional
use_insurance
boolean 
optional
can_check_content
boolean 
optional
error
boolean 
optional
error_code
string 
optional
log_id
string 
optional
messages
string 
optional
total
integer 
optional
Previous
List shipping service
Next
List available courier from order
Built with