List Carrier Services

Requirements

  • This lesson assumes you have know how to List Your Carriers
  • You will need a carrierId for this request.

Example

GET /cloud-boot-manager/api/v1/carrier/:carrierId/services

curl --location --request GET 'https://apis.gigacloudlogistics.com/cloud-boot-manager/api/v1/carriers/GCL-*********/services' \
--header 'Authorization: __YOUR_ACCESS_TOKEN__'
1
2
{
    "success": true,
    "data": [
        {
            "carrierId": "GCL-*********",
            "carrierCode": null,
            "serviceCode": "EVRI_STANDARD",
            "name": "EVRI standard service",
            "domestic": true,
            "international": false,
            "isMultiPackageSupported": true
        }
    ]
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14