Skip to Content
FluxStore is currently invite-only. Some sections of this documentation are still being written and expanded.
GET/api/v1/orders/{id}

Retrieve a single order by its ID, including line items.

Customer email addresses are masked in the response.

Requires the Orders:View permission.

Path parameters

idstring· uuidrequired
The order ID.

Order object

idstring· uuidrequired
The order ID.
playerUsernamestringrequired
Player in-game name.
playerUuidstring· uuid
Minecraft UUID, if known.
emailstring
Customer email, masked as j***@example.com.
statusstringrequired
Order status.
Values:
PendingPaidCancelledRefundedChargeback
totalAmountnumberrequired
Final amount paid in paymentCurrency.
paymentProviderstring
Payment provider used.
Values:
StripePayPalManual
paymentCurrencystring
ISO 4217 currency code.
couponIdstring· uuid
Coupon used, if any.
couponDiscountAmountnumber
Coupon discount amount.
giftCardIdstring· uuid
Gift card used, if any.
giftCardAmountnumber
Amount paid via gift card.
itemsobject[]required
Line items (see schema below).
createdAtstring· date-timerequired
Order creation timestamp.
updatedAtstring· date-timerequired
Last update timestamp.

Order item object

idstring· uuidrequired
Line item ID.
packageIdstring· uuidrequired
Package purchased.
packageNamestringrequired
Package name at time of purchase.
quantityintegerrequired
Quantity ordered.
priceAtPurchasenumberrequired
Price per unit at the time of purchase.