Skip to main content

9. API to Get Pickup Address List

This API returns the list of pickup addresses that have been registered in the GHTK system via the GHTK Customer Portal

Endpoint

GET /services/shipment/list_pick_add

Headers

  • Token: {API_TOKEN}
  • X-Client-Source: {PARTNER_CODE}
  • Content-Type: application/json

Sample Request

GET /services/shipment/list_pick_add  HTTP/1.1
Token: {API_TOKEN}
X-Client-Source: {PARTNER_CODE}

Response

{
"success": true,
"message": "",
"data": [
{
"pick_address_id": "88256",
"address": "Số nhà 105, ngõ 13 Lĩnh Nam, Phường Mai Động, Quận Hoàng Mai, Tp. Hà Nội, Lĩnh Nam, Hà Nội",
"pick_tel": "0987654321",
"pick_name": "Store 1"
},
{
"pick_address_id": "88260",
"address": "1312, Phường 1, Quận Bình Thạnh, TP Hồ Chí Minh",
"pick_tel": "0987654321",
"pick_name": "Store 2"
}
]
}