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": "537d7c755f276c13fb26e7d2",
"orderPaymentMethodInput": {
"origin": "origin",
"amount": 29.99,
"ref": "5b42758eef158a80edd1c42c",
"added": 1752359181596
}
}
Response
{
"orderAddRefundMethod": {
"_id": "3e544099a963a71076e4dc67",
"id": "example",
"incId": 42,
"origin": "example",
"created": 1704691648773,
"modified": 1718855686065,
"shipping": {
"status": "Pending",
"fulfilled": true,
"date": 1748299365436,
"method": "example",
"freeShippingThreshold": 1.23,
"tracking": "example",
"shopCollection": true,
"weight": 1.23,
"packingSlip": "example"
},
"billing": {
"status": "example",
"fulfilled": true,
"paymentDate": 1745389869698,
"refundDate": 1745504339767
},
"orderId": "example",
"notes": [
{
"date": 1752943048758,
"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": "6f68d8f48c57516b9f768c1e",
"quantity": 1,
"unavailable": true,
"added": 1715174042200
}
],
"messages": [
{
"_id": "77d2630ac27923bbd20d6404",
"created": 1755197001010,
"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": "e5b443826804e4d068b6c31a",
"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": 1730553141959,
"ip": "example"
}
],
"seller": {
"type": "example",
"name": "example",
"email": "email@example.com",
"ref": "5e36c2b611deab51e1df5aa8"
},
"updated": 1760558839222,
"status": "example",
"discogsStatus": "example",
"buyerWasContacted": true,
"unreadMessagesCount": 42,
"mergeableOrders": [
{
"_id": "6f94fb4a7031d9d047979640",
"id": "example",
"created": 1759490631626,
"total": 29.99,
"description": "example"
}
],
"path": "/release/1763553751/release-artist-release-name"
}
}
Arguments
| Name | Type | Description |
|---|---|---|
orderRef | ID! | Reference ID of the order to add a refund method to. |
orderPaymentMethodInput | OrderPaymentMethodInput! | Refund method details including origin, amount, optional reference, and date. |