input CreateShippingLabelInput
Fields
| Field | Type | Description |
|---|---|---|
customer_account_id | String | Use this when you are a 3PL acting on behalf of one of your customers |
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 | |
shipment_id | String! |
Referenced By
- shipment_create_shipping_label Mutation
Example
{
"customer_account_id": "abc123",
"carrier": "abc123",
"shipping_name": "abc123",
"shipping_method": "abc123",
"cost": "abc123",
"address": AddressInput,
"dimensions": DimensionsInput,
"label": CreateLabelResourceInput,
"line_item_ids": "abc123",
"tracking_number": "abc123",
"shipment_id": "abc123"
}