Get Shipping Methods List
Developing
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
Request Code Samples
curl --location --request GET 'http://petfen-product.local.com:8082/api/v1/shipping-methods' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"product_id": 0
}'
Responses
application/json [
{
"name": "Tiết kiệm",
"value": "economy"
},
{
"name": "Thường",
"value": "normala"
},
{
"name": "Nhanh",
"value": "fast"
},
{
"name": "Hoả Tốc",
"value": "express"
}
]
Modified at 2025-03-14 14:32:14