input CreateShipmentShippingLabelInput
Fields
| Field | Type | Description |
|---|---|---|
carrier | String! | |
shipping_name | String! | |
shipping_method | String! | |
cost | String! | |
address | AddressInput! | |
dimensions | DimensionsInput! | |
label | CreateLabelResourceInput! | |
line_item_ids | [String]! | Specify the line items that should be associated with the label been created. The ids can be shipment line item ids or order line item ids (the ones used to create the shipment line items) |
tracking_number | String | |
tracking_url | String |
Referenced By
- CreateShipmentInput Type
Example
{
"carrier": "abc123",
"shipping_name": "abc123",
"shipping_method": "abc123",
"cost": "abc123",
"address": AddressInput,
"dimensions": DimensionsInput,
"label": CreateLabelResourceInput,
"line_item_ids": "abc123",
"tracking_number": "abc123",
"tracking_url": "abc123"
}