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
  • CustomerGetClientHubs
  • Example

Was this helpful?

  1. Customer

List of ClientHubs

API get list of pick up points (Client hub)

CustomerGetClientHubs

POST /Api/Customer/CustomerGetClientHubs

Request Body

Name
Type
Description

GetFullAddress

boolean

true: take all including approved and unapproved Clienthubs. false: take only approved Client Hub

{
    "Errors": [],
    "ErrorMessage": "",
    "Hubs": [
        {
            "ClientHubID": 1158,
            "Address": "nguyễn huệ",
            "ContactName": "SAIGONBPO",
            "ContactPhone": "0963225098",
            "ManagerName": null,
            "ManagerPhone": null,
            "IsMain": true,
            "DistrictName": "Quận Một",
            "ProvinceName": "HỒ CHÍ MINH",
            "WardName": "Phường Bến Nghé",
            "StatusName": "Đã duyệt",
            "Phone": "0963225098",
            "IsEnable": false
        }
    ]
}

Example

{
	"GetFullAddress": true
}
PreviousValue-added servicesNextUpdate Order

Was this helpful?