input CreateShippingLinesInput
Fields
| Field | Type | Description |
|---|---|---|
title | String! | Human-readable title for this shipping line. |
price | String! | Customer-facing charge amount as a decimal monetary value in the order currency; distinct from value/customs_value used for declared value. |
carrier | String | Carrier name or carrier code used for shipping. |
method | String | Carrier service or shipping method code. |
Referenced By
- CreateOrderInput Type
- CreateWholesaleOrderInput Type
- UpdateOrderInput Type
Example
{
"title": "Standard Shipping",
"price": "19.99",
"carrier": "ups",
"method": "ups_ground"
}