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