Skip to main content

orderBillingUpdate Mutation

Description

Updates the billing information for an order, including billing address and invoice ID.

mutation orderBillingUpdate(
$orderRef: ID!
$billingAddress: AddressInput
$buyerRef: ID
$invoiceId: String
) {
orderBillingUpdate(
orderRef: $orderRef
billingAddress: $billingAddress
buyerRef: $buyerRef
invoiceId: $invoiceId
) {
_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": "23243f42b44c59211cdffc91",
"billingAddress": {
"description": "A description",
"addressLine1": "addressLine1",
"addressLine2": "addressLine2",
"streetNumber": 42,
"city": "Montreal",
"state": "Quebec",
"postCode": "postCode",
"alpha2": "alpha2",
"country": "Canada",
"stateCode": "stateCode",
"type": "type",
"geoLoc": {
"type": "type",
"coordinates": [
30.7
]
}
},
"buyerRef": "f2aa654dd23a990d857a4fd1",
"invoiceId": "invoiceId"
}

Response

{
"orderBillingUpdate": {
"_id": "ada2e30de8296b6b176ef390",
"id": "example",
"incId": 42,
"origin": "example",
"created": 1765616099687,
"modified": 1757332785359,
"shipping": {
"status": "Pending",
"fulfilled": true,
"date": 1779269887322,
"method": "example",
"freeShippingThreshold": 1.23,
"tracking": "example",
"shopCollection": true,
"weight": 1.23,
"packingSlip": "example"
},
"billing": {
"status": "example",
"fulfilled": true,
"paymentDate": 1754895500346,
"refundDate": 1738263429701
},
"orderId": "example",
"notes": [
{
"date": 1728716712913,
"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": "ec1f8aff59c079b4e8319138",
"quantity": 1,
"unavailable": true,
"added": 1764632696768
}
],
"messages": [
{
"_id": "39a1c818ab3467affd725f74",
"created": 1745657711083,
"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": "ca34e1c95b7e09c85d2f3142",
"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": 1760682747455,
"ip": "example"
}
],
"seller": {
"type": "example",
"name": "example",
"email": "email@example.com",
"ref": "ad0d51034e755da0a3766b19"
},
"updated": 1744588824492,
"status": "example",
"discogsStatus": "example",
"buyerWasContacted": true,
"unreadMessagesCount": 42,
"mergeableOrders": [
{
"_id": "852ea011da23c49898dc805b",
"id": "example",
"created": 1740991476366,
"total": 29.99,
"description": "example"
}
],
"path": "/release/1763553751/release-artist-release-name"
}
}

Arguments

NameTypeDescription
orderRefID!Reference ID of the order to update.
billingAddressAddressInputBilling address for the order. If not provided, the billing address remains unchanged.
buyerRefIDReference ID of the buyer to assign to the order. Pass null to unassign the current buyer.
invoiceIdStringCustom invoice ID to set on the order's billing.

Returns

Order!