Skip to main content

Refund

Represents a monetary refund issued for an order. A refund tracks when money is returned to the customer, which may be associated with a product return.

type Refund {
id: Int!
createdAt: DateTime
rows: [RefundRow]
}

Fields

id ● Int!

Id of the refund

createdAt ● DateTime

Timestamp when the refund was created

rows ● [RefundRow]

The rows of the refund

Example

{
"id": 8723,
"createdAt": "2024-05-03T11:52:33Z",
"rows": [
{
"orderRowId": 8723
}
]
}