For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
GuidesAPI Reference
GuidesAPI Reference
  • Reference
    • Introduction
      • Contact Object
      • Consumer Object
      • Discount Object
      • Item Object
      • Money Object
      • Order Details Object
      • Payment Object
      • Payment Event Object
      • Refund Object
      • Shipping Courier Object
LogoLogo
On this page
  • Attributes
  • Example Shipping Courier object
ReferenceData Models

Shipping Courier object

Was this page helpful?
Previous
Built with

Attributes

AttributeTypeDescription
shippedAtstringThe date and time when the order was shipped, in ISO 8601 format.
namestringThe name of the courier. This is limited to 128 characters.
trackingstringThe tracking number provided by the courier. Limited to 128 characters.
prioritystringThe shipping priority. If provided, must be either “STANDARD” or “EXPRESS”.

Example Shipping Courier object

1{
2 "shippedAt": "2024-01-01T00:00:00-08:00",
3 "name": "FedEx",
4 "tracking": "000 000 000 000",
5 "priority": "STANDARD"
6}