orderGenerateGiftCards Mutation
Description
Generates gift cards for all applicable line items in an order. Gift cards are created for line items that are configured to generate gift cards and are sent via email to the buyer.
mutation orderGenerateGiftCards($orderRef: ID!) {
orderGenerateGiftCards(orderRef: $orderRef) {
_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": "8137ee915b4ec471ad53647c"
}
Response
{
"orderGenerateGiftCards": {
"_id": "d393b337c19ffbc2bb3c978a",
"id": "example",
"incId": 42,
"origin": "example",
"created": 1716787550044,
"modified": 1760201928510,
"shipping": {
"status": "Pending",
"fulfilled": true,
"date": 1764371804968,
"method": "example",
"freeShippingThreshold": 1.23,
"tracking": "example",
"shopCollection": true,
"weight": 1.23,
"packingSlip": "example"
},
"billing": {
"status": "example",
"fulfilled": true,
"paymentDate": 1709425299417,
"refundDate": 1727838157825
},
"orderId": "example",
"notes": [
{
"date": 1755147137198,
"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": "8f69bbef4c739c612aca97d0",
"quantity": 1,
"unavailable": true,
"added": 1749090489448
}
],
"messages": [
{
"_id": "3eab6a1b97ab9decd9e7e10b",
"created": 1710051918330,
"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": "0865a96c8ae30d7d8b11a435",
"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": 1730116806864,
"ip": "example"
}
],
"seller": {
"type": "example",
"name": "example",
"email": "email@example.com",
"ref": "d690bb9acfff941e8d752898"
},
"updated": 1726292665350,
"status": "example",
"discogsStatus": "example",
"buyerWasContacted": true,
"unreadMessagesCount": 42,
"mergeableOrders": [
{
"_id": "3282b143bdaa20dd2467e8a8",
"id": "example",
"created": 1742794326040,
"total": 29.99,
"description": "example"
}
],
"path": "/release/1763553751/release-artist-release-name"
}
}
Arguments
| Name | Type | Description |
|---|---|---|
orderRef | ID! | Reference ID of the order to generate gift cards for. |