Skip to main content

orderGeneratePackingSlip Mutation

Description

Generates a packing slip PDF for an order. The packing slip is used for shipping and includes order items and shipping information.

mutation orderGeneratePackingSlip($orderRef: ID!, $format: String) {
orderGeneratePackingSlip(orderRef: $orderRef, format: $format) {
_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": "14d445e5ad4e0990a851908c",
"format": "format"
}

Response

{
"orderGeneratePackingSlip": {
"_id": "c5774880dc3b86da13b82d08",
"id": "example",
"incId": 42,
"origin": "example",
"created": 1772576004232,
"modified": 1741114369497,
"shipping": {
"status": "Pending",
"fulfilled": true,
"date": 1753836103608,
"method": "example",
"freeShippingThreshold": 1.23,
"tracking": "example",
"shopCollection": true,
"weight": 1.23,
"packingSlip": "example"
},
"billing": {
"status": "example",
"fulfilled": true,
"paymentDate": 1740841044119,
"refundDate": 1773324502829
},
"orderId": "example",
"notes": [
{
"date": 1735357044193,
"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": "b1678f1e53a0e1555ef37fc8",
"quantity": 1,
"unavailable": true,
"added": 1742424418123
}
],
"messages": [
{
"_id": "b23a6da4f6de4c96a146e80f",
"created": 1717604541303,
"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": "df77c2bf86210ab24ba0bcde",
"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": 1717450483654,
"ip": "example"
}
],
"seller": {
"type": "example",
"name": "example",
"email": "email@example.com",
"ref": "fffa7cc78a25ca65c2eee0c3"
},
"updated": 1764881919570,
"status": "example",
"discogsStatus": "example",
"buyerWasContacted": true,
"unreadMessagesCount": 42,
"mergeableOrders": [
{
"_id": "daab4575c0b02426aa2d2357",
"id": "example",
"created": 1719131267019,
"total": 29.99,
"description": "example"
}
],
"path": "/release/1763553751/release-artist-release-name"
}
}

Arguments

NameTypeDescription
orderRefID!Reference ID of the order to generate a packing slip for.
formatStringFormat of the packing slip. Valid values include "PDF" or "CSV". Defaults to "PDF".

Returns

Order!