API Docs
Home
Home
Developer GuideAPI
StatusWebhooks
Developer GuideAPI
StatusWebhooks
  1. Options
  • 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
        GET
      • List Product Type
        GET
      • List Material
        GET
      • List Storage Method
        GET
    • List product inventory
      GET
    • Product inventory detail
      GET
    • Create single inventory product
      POST
  • 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
      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. Options

List Material

GET
/api/v1/public/products/list-material
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/api/v1/public/products/list-material' \
--header 'Authorization;'
Response Response Example
{
  "status_code": 200,
  "data": [
    {
      "value": "NO-MATERIAL",
      "label": "No Material",
      "is_active": true
    },
    {
      "value": "BUBBLE-LG",
      "label": "Big bubble",
      "is_active": true
    },
    {
      "value": "BUBBLE-SM",
      "label": "Small bubble",
      "is_active": true
    },
    {
      "value": "PE-FILM",
      "label": "PE Stretch Film",
      "is_active": true
    },
    {
      "value": "3PF-BOX",
      "label": "Box of 3pf",
      "is_active": true
    },
    {
      "value": "3PF-BAG",
      "label": "Bag of 3pf",
      "is_active": true
    },
    {
      "value": "CU-BOX",
      "label": "Box of customer",
      "is_active": true
    },
    {
      "value": "CU-BAG",
      "label": "Bag of customer",
      "is_active": true
    }
  ],
  "error": false,
  "error_code": null,
  "log_id": null,
  "messages": "",
  "total": 8
}

Request

Header Params
Authorization
string 
required
Default:
{{your_api_key_here}}

Responses

🟢200OK
application/json
Body
status_code
integer 
optional
data
array [object {3}] 
optional
value
string 
optional
label
string 
optional
is_active
boolean 
optional
error
boolean 
optional
error_code
string 
optional
log_id
string 
optional
messages
string 
optional
total
integer 
optional
Previous
List Product Type
Next
List Storage Method
Built with