Types > SubscriptionError
Commerce APITypesSubscriptionError
SubscriptionError

Values

ValueDescription
currency_not_allowedCurrency is not enabled for the payment gateway
gateway_not_supportedGateway of the origin order cannot be used to create a new order
invalid_product_quantityInvalid product quantity
invalid_shop_destinationWe don't currently ship to your location
no_inventorySuitable inventory not found for a given product
okEverything is good
out_of_stockSome item is out of stock
product_bannedProduct is not available in your region
realtime_shipping_rates_failureFailed fetching realtime shipping rates
saved_card_not_foundA valid payment method was not found and therefore new order cannot be created
shop_misconfiguredMost likely shop tax settings are misconfigured. Tax is based on shipping address, while order contains digital goods only.
transaction_errorPayment failed
unrecognized_errorSomething unexpected happened while processing the subscription

Used By

Types

Subscription

Preview (typescript)

type SubscriptionError =
| "currency_not_allowed"
| "gateway_not_supported"
| "invalid_product_quantity"
| "invalid_shop_destination"
| "no_inventory"
| "ok"
| "out_of_stock"
| "product_banned"
| "realtime_shipping_rates_failure"
| "saved_card_not_found"
| "shop_misconfigured"
| "transaction_error"
| "unrecognized_error"