Skip to main content
Version: 3.x

OrderGrantedRefund

The details of granted refund.

Added in Saleor 3.13
This API is currently in Feature Preview and can be subject to changes at later point.
type OrderGrantedRefund {
id: ID!
createdAt: DateTime!
updatedAt: DateTime!
amount: Money!
reason: String
user: User
app: App
shippingCostsIncluded: Boolean!
lines: [OrderGrantedRefundLine!]
}

Fields

OrderGrantedRefund.id ● ID! non-null scalar

OrderGrantedRefund.createdAt ● DateTime! non-null scalar

Time of creation.

OrderGrantedRefund.updatedAt ● DateTime! non-null scalar

Time of last update.

OrderGrantedRefund.amount ● Money! non-null object

Refund amount.

OrderGrantedRefund.reason ● String scalar

Reason of the refund.

OrderGrantedRefund.user ● User object

User who performed the action. Requires of of the following permissions: MANAGE_USERS, MANAGE_STAFF, OWNER.

OrderGrantedRefund.app ● App object

App that performed the action.

OrderGrantedRefund.shippingCostsIncluded ● Boolean! non-null scalar

If true, the refunded amount includes the shipping price.If false, the refunded amount does not include the shipping price.

Added in Saleor 3.15
This API is currently in Feature Preview and can be subject to changes at later point.

OrderGrantedRefund.lines ● [OrderGrantedRefundLine!] list object

Lines assigned to the granted refund.

Added in Saleor 3.15
This API is currently in Feature Preview and can be subject to changes at later point.

Member of

Order object ● OrderGrantRefundCreate object ● OrderGrantRefundUpdate object ● TransactionRefundRequested object


Was this page helpful?