Skip to main content

⚠️ Deprecated: No longer supported

orderGenerateGiftCard Mutation

Description

Generates a gift card for a specific order line item. This mutation is deprecated in favor of orderGenerateGiftCards which generates gift cards for all applicable line items in an order.

mutation orderGenerateGiftCard($orderRef: ID!, $lineRef: ID!) {
orderGenerateGiftCard(orderRef: $orderRef, lineRef: $lineRef) {
_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": "aed5d478d10f9bfc26fd15eb",
"lineRef": "09bce54c894f0ce6d5c189cd"
}

Response

{
"orderGenerateGiftCard": {
"_id": "bd6b6f3d2aa8aadb90ad939d",
"id": "example",
"incId": 42,
"origin": "example",
"created": 1746328505102,
"modified": 1734480144994,
"shipping": {
"status": "Pending",
"fulfilled": true,
"date": 1745734466600,
"method": "example",
"freeShippingThreshold": 1.23,
"tracking": "example",
"shopCollection": true,
"weight": 1.23,
"packingSlip": "example"
},
"billing": {
"status": "example",
"fulfilled": true,
"paymentDate": 1746220261748,
"refundDate": 1733687181644
},
"orderId": "example",
"notes": [
{
"date": 1754105048363,
"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": "c1b5047744928d18ef9d4f2f",
"quantity": 1,
"unavailable": true,
"added": 1724891275836
}
],
"messages": [
{
"_id": "6a8cba4679a0ee8f9eb99c3a",
"created": 1745256383584,
"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": "cb81b166c632b0801c2e88bb",
"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": 1719189352338,
"ip": "example"
}
],
"seller": {
"type": "example",
"name": "example",
"email": "email@example.com",
"ref": "a040f8fdb9ba9bf0c7986f5d"
},
"updated": 1764911904515,
"status": "example",
"discogsStatus": "example",
"buyerWasContacted": true,
"unreadMessagesCount": 42,
"mergeableOrders": [
{
"_id": "da436ba5a3e348b4ea9c9c51",
"id": "example",
"created": 1731842231692,
"total": 29.99,
"description": "example"
}
],
"path": "/release/1763553751/release-artist-release-name"
}
}

Arguments

NameTypeDescription
orderRefID!Reference ID of the order containing the line item.
lineRefID!Reference ID of the order line item to generate a gift card for.

Returns

Order