--- title: SubscriptionDeliveryOptionsResult - Customer API description: The result of the query that fetches delivery options for the subscription contract. api_version: 2025-10 api_name: customer type: union api_type: graphql source_url: html: https://shopify.dev/docs/api/customer/latest/unions/subscriptiondeliveryoptionsresult md: https://shopify.dev/docs/api/customer/latest/unions/subscriptiondeliveryoptionsresult.md --- # Subscription​Delivery​Options​Result union The result of the query that fetches delivery options for the subscription contract. ## Possible types * [Subscription​Delivery​Options​Result​Failure](https://shopify.dev/docs/api/customer/latest/objects/SubscriptionDeliveryOptionsResultFailure) OBJECT A failed result indicating unavailability of delivery options for the subscription contract. * message [String](https://shopify.dev/docs/api/customer/latest/scalars/String) The reason for the failure. * [Subscription​Delivery​Options​Result​Success](https://shopify.dev/docs/api/customer/latest/objects/SubscriptionDeliveryOptionsResultSuccess) OBJECT A successful result containing the available delivery options for the subscription contract. * delivery​Options [\[Subscription​Delivery​Option!\]!](https://shopify.dev/docs/api/customer/latest/unions/SubscriptionDeliveryOption) non-null The available delivery options. * token [String!](https://shopify.dev/docs/api/customer/latest/scalars/String) non-null The token associated with the successful result of delivery options. *** ```graphql union SubscriptionDeliveryOptionsResult = SubscriptionDeliveryOptionsResultFailure | SubscriptionDeliveryOptionsResultSuccess ```