Shipping Courier object
Attributes
| Attribute | Type | Description |
|---|---|---|
| shippedAt | string | The date and time when the order was shipped, in ISO 8601 format. |
| name | string | The name of the courier. Limited to 128 characters. |
| tracking | string | The tracking number provided by the courier. Limited to 128 characters. |
| priority | string | The shipping priority. If provided, must be either “STANDARD” or “EXPRESS”. |
Example Shipping Courier object
Australia
1 { 2 "shippedAt": "2019-01-01T00:00:00+10:00", 3 "name": "Australia Post", 4 "tracking": "AA0000000000000", 5 "priority": "STANDARD" 6 }
New Zealand
1 { 2 "shippedAt": "2019-01-01T00:00:00+13:00", 3 "name": "CourierPost", 4 "tracking": "AA999999999AA", 5 "priority": "STANDARD" 6 }
United States of America
1 { 2 "shippedAt": "2019-01-01T00:00:00-08:00", 3 "name": "FedEx", 4 "tracking": "000 000 000 000", 5 "priority": "STANDARD" 6 }