Skip to main content

orderAddRefundMethod Mutation

Description

Adds a refund method to an order. The refund amount is recorded in the order's payment methods. Refunds reduce the total paid amount for the order.

mutation orderAddRefundMethod(
$orderRef: ID!
$orderPaymentMethodInput: OrderPaymentMethodInput!
) {
orderAddRefundMethod(
orderRef: $orderRef
orderPaymentMethodInput: $orderPaymentMethodInput
) {
_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": "376f25fc189a8e71f8c00657",
"orderPaymentMethodInput": {
"origin": "origin",
"amount": 29.99,
"ref": "a8ba478ce783eef3b0752e40",
"added": 1719429330351
}
}

Response

{
"orderAddRefundMethod": {
"_id": "224a195e93c676080845d14d",
"id": "example",
"incId": 42,
"origin": "example",
"created": 1767515245315,
"modified": 1732235169123,
"shipping": {
"status": "Pending",
"fulfilled": true,
"date": 1761962071257,
"method": "example",
"freeShippingThreshold": 1.23,
"tracking": "example",
"shopCollection": true,
"weight": 1.23,
"packingSlip": "example"
},
"billing": {
"status": "example",
"fulfilled": true,
"paymentDate": 1737978692583,
"refundDate": 1768133700135
},
"orderId": "example",
"notes": [
{
"date": 1726705184763,
"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": "65b2bfcb85bcfca2be4f845a",
"quantity": 1,
"unavailable": true,
"added": 1736538687803
}
],
"messages": [
{
"_id": "981fff1dc8df2bd6da8e4f73",
"created": 1712749761321,
"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": "0222812a39e096fe65156e1e",
"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": 1742640107524,
"ip": "example"
}
],
"seller": {
"type": "example",
"name": "example",
"email": "email@example.com",
"ref": "92521bd384b7891aabaae2d4"
},
"updated": 1773655529847,
"status": "example",
"discogsStatus": "example",
"buyerWasContacted": true,
"unreadMessagesCount": 42,
"mergeableOrders": [
{
"_id": "7f9138f712af34b97ac18cc7",
"id": "example",
"created": 1772197511866,
"total": 29.99,
"description": "example"
}
],
"path": "/release/1763553751/release-artist-release-name"
}
}

Arguments

NameTypeDescription
orderRefID!Reference ID of the order to add a refund method to.
orderPaymentMethodInputOrderPaymentMethodInput!Refund method details including origin, amount, optional reference, and date.

Returns

Order!