orderCarrierBuyLabel Mutation
Description
Marks an order as shipped or packed. If isPacked is true, the order is marked as packed. Otherwise, the order status is updated to "Shipped" and the shipping date is set. For marketplace orders, the status may also be synchronized with the marketplace. Optionally sends a shipping confirmation email to the buyer.
mutation orderCarrierBuyLabel(
$orderRef: ID!
$rateId: String!
$contractId: Int
$method: String
$carrier: String
) {
orderCarrierBuyLabel(
orderRef: $orderRef
rateId: $rateId
contractId: $contractId
method: $method
carrier: $carrier
) {
_id
id
incId
origin
created
modified
shipping {
status
fulfilled
date
method
freeShippingThreshold
tracking
shopCollection
weight
packingSlip
}
billing {
status
fulfilled
paymentDate
refundDate
}
orderId
notes {
date
content
}
instructions
totals {
subtotal
subtotalBeforeTaxes
tax
grand
leftToPay
itemQuantity
discount
shipping
creditNote
balance
}
items {
_id
quantity
unavailable
added
}
messages {
_id
created
subject
message
fromBuyer
flagged
content
read
orderId
orderIncId
uri
via
}
buyer {
_id
firstName
lastName
email
name
path
telephone
organisation
taxNumber
}
logs {
action
description
date
ip
}
seller {
type
name
email
ref
}
updated
status
discogsStatus
buyerWasContacted
unreadMessagesCount
mergeableOrders {
_id
id
created
total
description
}
path
}
}
Variables
{
"orderRef": "4a3141dfc524c4cd6b61c980",
"rateId": "rateId",
"contractId": 42,
"method": "method",
"carrier": "carrier"
}
Response
{
"orderCarrierBuyLabel": {
"_id": "64708f9dccdb7342dd52f5a9",
"id": "example",
"incId": 42,
"origin": "example",
"created": 1733356485177,
"modified": 1750101788289,
"shipping": {
"status": "Pending",
"fulfilled": true,
"date": 1760592267660,
"method": "example",
"freeShippingThreshold": 1.23,
"tracking": "example",
"shopCollection": true,
"weight": 1.23,
"packingSlip": "example"
},
"billing": {
"status": "example",
"fulfilled": true,
"paymentDate": 1721223612808,
"refundDate": 1777616543838
},
"orderId": "example",
"notes": [
{
"date": 1776636838895,
"content": "example"
}
],
"instructions": "example",
"totals": {
"subtotal": 1.23,
"subtotalBeforeTaxes": 1.23,
"tax": 1.23,
"grand": 1.23,
"leftToPay": 1.23,
"itemQuantity": 1.23,
"discount": 0.1,
"shipping": 1.23,
"creditNote": 1.23,
"balance": 1.23
},
"items": [
{
"_id": "c3add1edd77942685a11d84f",
"quantity": 1,
"unavailable": true,
"added": 1738954553175
}
],
"messages": [
{
"_id": "b27a30a1d16d2d45357ce750",
"created": 1722729663247,
"subject": "example",
"message": "example",
"fromBuyer": true,
"flagged": true,
"content": "example",
"read": true,
"orderId": "example",
"orderIncId": 42,
"uri": "https://www.my-common-ground-store.com/release/1763553751/release-artist-release-name",
"via": "example"
}
],
"buyer": {
"_id": "c7acbdba0601c4c578d534bc",
"firstName": "example",
"lastName": "example",
"email": "email@example.com",
"name": "example",
"path": "/release/1763553751/release-artist-release-name",
"telephone": "example",
"organisation": "example",
"taxNumber": "example"
},
"logs": [
{
"action": "example",
"description": "example",
"date": 1750422532596,
"ip": "example"
}
],
"seller": {
"type": "example",
"name": "example",
"email": "email@example.com",
"ref": "f714a329d2bb56abbd2f126f"
},
"updated": 1731269730646,
"status": "example",
"discogsStatus": "example",
"buyerWasContacted": true,
"unreadMessagesCount": 42,
"mergeableOrders": [
{
"_id": "eb4cd50c0ca484770459e863",
"id": "example",
"created": 1723508133468,
"total": 29.99,
"description": "example"
}
],
"path": "/release/1763553751/release-artist-release-name"
}
}
Arguments
| Name | Type | Description |
|---|---|---|
orderRef | ID! | Reference ID of the order to buy a label for. |
rateId | String! | Provider rate identifier returned by orderCarrierRates. |
contractId | Int | Sendcloud contract identifier returned alongside the rate, when present. |
method | String | Friendly service name of the selected rate, stored on the label. |
carrier | String | Carrier name of the selected rate, stored on the label. |