Types > SubscriptionError
Values
Value | Description |
---|---|
currency_not_allowed | Currency is not enabled for the payment gateway |
gateway_not_supported | Gateway of the origin order cannot be used to create a new order |
invalid_product_quantity | Invalid product quantity |
invalid_shop_destination | We don't currently ship to your location |
no_inventory | Suitable inventory not found for a given product |
ok | Everything is good |
out_of_stock | Some item is out of stock |
product_banned | Product is not available in your region |
realtime_shipping_rates_failure | Failed fetching realtime shipping rates |
saved_card_not_found | A valid payment method was not found and therefore new order cannot be created |
shop_misconfigured | Most likely shop tax settings are misconfigured. Tax is based on shipping address, while order contains digital goods only. |
transaction_error | Payment failed |
unrecognized_error | Something unexpected happened while processing the subscription |
Used By
Types
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"