Skip to main content

ChannelSummary

What one selling surface contributed to a period.

type ChannelSummary {
channel: SalesChannel!
revenue: Money!
refundedAmount: Money!
netRevenue: Money!
orderCount: Int!
revenueSharePercent: Float!
}

Fields

ChannelSummary.channel ● SalesChannel! non-null enum

The selling surface.

ChannelSummary.revenue ● Money! non-null object

What its orders came to before refunds, in the merchant's currency.

ChannelSummary.refundedAmount ● Money! non-null object

How much of that was given back.

ChannelSummary.netRevenue ● Money! non-null object

What the merchant kept: revenue less refunds.

ChannelSummary.orderCount ● Int! non-null scalar

How many orders it took. Cancellations are not counted.

ChannelSummary.revenueSharePercent ● Float! non-null scalar

This channel's share of the period's revenue, as a percentage between 0 and 100. Zero for every channel when the period took no revenue at all.

Member Of

SalesSummary object