Commercial Carriers

GET /metadata/commercial_carriers

Retrieve the list of the commercial carriers that Arta supports for Track Shipments.

Headers

  • Authorization string Required

    Authorize your API calls with an Arta API token

Responses

  • 200 application/json

    An example collection of commercial carriers

    Hide headers attributes Show headers attributes
    Hide response attributes Show response attributes object
    • id string

      The ID representing the carrier

    • name string

      A brief label for the carrier

GET /metadata/commercial_carriers
curl \
 -X GET https://api.arta.io/metadata/commercial_carriers \
 -H "Authorization: ARTA_APIKey s0e1t2e3c4a5s6t7r8o9n10o11m12y"
Response examples (200)
[
  {
    "id": "dhl_express",
    "name": "DHL Express"
  },
  {
    "id": "fedex",
    "name": "FedEx"
  },
  {
    "id": "ups",
    "name": "UPS"
  },
  {
    "id": "usps",
    "name": "USPS"
  }
]