--- title: SubscriptionDeliveryMethod - Customer API description: The delivery method to use to deliver the physical goods to the customer. api_version: 2025-10 api_name: customer type: union api_type: graphql source_url: html: https://shopify.dev/docs/api/customer/latest/unions/subscriptiondeliverymethod md: https://shopify.dev/docs/api/customer/latest/unions/subscriptiondeliverymethod.md --- # Subscription​Delivery​Method union The delivery method to use to deliver the physical goods to the customer. ## Possible types * [Subscription​Delivery​Method​Local​Delivery](https://shopify.dev/docs/api/customer/latest/objects/SubscriptionDeliveryMethodLocalDelivery) OBJECT The local delivery method, including a mailing address and a local delivery option. * address [Subscription​Mailing​Address!](https://shopify.dev/docs/api/customer/latest/objects/SubscriptionMailingAddress) non-null The delivery address. * local​Delivery​Option [Subscription​Delivery​Method​Local​Delivery​Option!](https://shopify.dev/docs/api/customer/latest/objects/SubscriptionDeliveryMethodLocalDeliveryOption) non-null The local delivery method details. * [Subscription​Delivery​Method​Pickup](https://shopify.dev/docs/api/customer/latest/objects/SubscriptionDeliveryMethodPickup) OBJECT A delivery method with a pickup option. * pickup​Option [Subscription​Delivery​Method​Pickup​Option!](https://shopify.dev/docs/api/customer/latest/objects/SubscriptionDeliveryMethodPickupOption) non-null The details of the pickup delivery method. * [Subscription​Delivery​Method​Shipping](https://shopify.dev/docs/api/customer/latest/objects/SubscriptionDeliveryMethodShipping) OBJECT The shipping delivery method, including a mailing address and a shipping option. * address [Subscription​Mailing​Address!](https://shopify.dev/docs/api/customer/latest/objects/SubscriptionMailingAddress) non-null The address for shipping. * shipping​Option [Subscription​Delivery​Method​Shipping​Option!](https://shopify.dev/docs/api/customer/latest/objects/SubscriptionDeliveryMethodShippingOption) non-null The details of the shipping method. *** ## Fields with this union * [Subscription​Contract.​delivery​Method](https://shopify.dev/docs/api/customer/latest/objects/SubscriptionContract#field-deliveryMethod) OBJECT A Subscription Contract. * [Subscription​Contract​Base.​delivery​Method](https://shopify.dev/docs/api/customer/latest/interfaces/SubscriptionContractBase#field-deliveryMethod) INTERFACE The common fields of a subscription contract. *** ```graphql union SubscriptionDeliveryMethod = SubscriptionDeliveryMethodLocalDelivery | SubscriptionDeliveryMethodPickup | SubscriptionDeliveryMethodShipping ```