API Docs
Home
Home
Developer GuideAPI
StatusWebhooks
Developer GuideAPI
StatusWebhooks
  1. Shipment Inbound
  • Config
    • List Pickup Address
      GET
    • List Box Dimension
      GET
    • List vendor
      GET
    • List store
      GET
    • List category
      GET
    • List brand
      GET
    • List Outbound Strategy
      GET
    • List Product Type
      GET
    • List Material
      GET
    • List Storage Method
      GET
    • List Unit
      GET
    • Upload File
      POST
  • Online Product
    • Create Single Product
      POST
    • Create Product From Product Inventory
      POST
    • List product
      GET
    • Product detail
      GET
  • Product Inventory
    • Create single inventory product
      POST
    • List product inventory
      GET
    • Product inventory detail
      GET
    • Get Product Inventory in Warehouse
      GET
  • Order
    • Shipping Service
      • Preview shipping prices
        • List shipping service
        • List available courier
      • List available courier from order
      • List shipping service of courier
    • Create order B2C
    • Create order B2B
    • List order
    • Order detail
    • Cancel order
  • Shipment
    • Create shipment auto
    • [Retail][Ship by self] Create shipment with item
    • Cancel shipment
    • List shipment
    • Shipment detail
    • List shipment of order
  • Shipment Inbound
    • Create shipment inbound
      POST
    • Cancel shipment inbound
      PATCH
    • List shipment inbound
      GET
    • Shipment inbound detail
      GET
    • Shipment inbound items
      GET
    • List addtional services
      GET
  • 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. Shipment Inbound

List addtional services

Developing
GET
/api/v1/public/shipments/inbound/list-additional-services

Request

Header Params

Responses

🟢200OK
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/api/v1/public/shipments/inbound/list-additional-services' \
--header 'Authorization;'
Response Response Example
{
    "status_code": 200,
    "data": [
        {
            "value": "ULG",
            "label": "Unloading goods",
            "description": "",
            "is_active": true,
            "is_default": true,
            "options": [
                {
                    "value": "ULP",
                    "label": "Unloading goods - full pallet",
                    "is_default": false
                },
                {
                    "value": "ULR",
                    "label": "Unloading goods - loose cargo",
                    "is_default": true
                }
            ]
        },
        {
            "value": "PRI",
            "label": "Priority inbound",
            "description": "",
            "is_active": true,
            "is_default": false
        },
        {
            "value": "CIG",
            "label": "Co-inspection of goods",
            "description": "",
            "is_active": true,
            "is_default": false
        },
        {
            "value": "RGO",
            "label": "Receiving goods outside of business hours",
            "description": "",
            "is_active": true,
            "is_default": false
        },
        {
            "value": "PRC",
            "label": "Product categorization",
            "description": "",
            "is_active": true,
            "is_default": false
        },
        {
            "value": "PQC",
            "label": "Product quality control",
            "description": "",
            "is_active": true,
            "is_default": false
        },
        {
            "value": "PLA",
            "label": "Product labeling",
            "description": "",
            "is_active": true,
            "is_default": false
        },
        {
            "value": "PST",
            "label": "Labeling product with barcode",
            "description": "",
            "is_active": true,
            "is_default": false
        },
        {
            "value": "PRE",
            "label": "Product reinforcement prior to storage",
            "description": "",
            "is_active": true,
            "is_default": false
        },
        {
            "value": "PCO",
            "label": "Combining/packaging combo",
            "description": "",
            "is_active": true,
            "is_default": false
        }
    ],
    "error": false,
    "error_code": null,
    "log_id": null,
    "messages": "",
    "total": 10,
    "version": "1.0.14"
}
Previous
Shipment inbound items
Next
List return order
Built with