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

Was this helpful?

  1. Customer

Update client hub

Update contact name, contact phone of client hub.

CustomerUpdateClientHub

POST /api/Customer/CustomerUpdateClientHub

Request Body

Name
Type
Description

ClientHubID*

int

ClientHubID

ContactName*

string

ContactName

ContactPhone*

string

ContactPhone

{
    "IsError": false,
    "Errors": [],
    "ErrorMessage": "",
    "DepositChangeAmount": 0.0
}

Example

{
    "HubInfo": {
        "ClientHubID": 1285,
        "ContactName": "Tran Van B",
        "ContactPhone": "0909123123"
    }
}

PreviousCreate client hubNextFeedback

Was this helpful?