247API
English
English
  • Getting Started
  • Change Log
  • Support
  • About 247Express
  • 247Express API NPM Package
  • Customer
    • Header Request
    • Shipment Pick-up and Delivery Workflow
    • Main services
    • Value-added services
    • List of ClientHubs
    • Update Order
    • Cancel order
    • Get delivered pictures
    • Pricing
    • Create an order
    • Create client hub
    • Update client hub
    • Feedback
  • SSO
    • SSO - Login
  • Tracking
    • Order Tracking
  • Webhooks
    • Update status
    • Status update log
Powered by GitBook
On this page
  • GetPriceForCustomerAPI
  • Example

Was this helpful?

  1. Customer

Pricing

The API charges a service fee of 247. The price is for reference only.

GetPriceForCustomerAPI

POST /Api/Customer/GetPriceForCustomerAPI

Request Body

Name
Type
Description

ServiceTypeID

string

Service code

ClientHubID

number

ClientHubID (not required when pickup address is flexible)

RealWeight

number

Real weight (after packing) (kg)

Height

number

Height (0 if size is unknow) (cm)

Width

number

Width (0 if size is unknow) (cm)

Length

number

Length (0 if size is unknow) (cm)

FromProvinceName

string

From province name (required if the pickup address is flexible)

ToWardName

string

To ward name

ToDistrictName

string

To district name

ToProvinceName

string

To province name

{
    "ExtraServices": [
        {
            "ServiceName": "Chuyển phát nhanh",
            "ServiceID": "DE",
            "Cost": 1184800.0
        },
        {
            "ServiceName": "Phí xăng dầu",
            "ServiceID": "Fuel",
            "Cost": 236960.0
        },
        {
            "ServiceName": "Phí VAT",
            "ServiceID": "VAT",
            "Cost": 142176.0
        }
    ],
    "TotalServiceCost": 1563936.0,
    "IsError": false,
    "Errors": [],
    "ErrorMessage": ""
}

Example

{
    "ToProvinceName": "Hồ Chí Minh",
    "ToDistrictName": "Quận 1",
    "ToWardName": "Phường Bến Nghé",
    "Length": 60,
    "Width": 60,
    "Height": 60,
    "RealWeight": 60,
    "ClientHubID": "5590",
    "ServiceTypeID": "DE"
}
PreviousGet delivered picturesNextCreate an order

Last updated 4 months ago

Was this helpful?