--- title: subscriptionContractFetchDeliveryOptions - Customer API description: Fetches the available delivery options for a Subscription Contract. api_version: 2025-10 api_name: customer type: mutation api_type: graphql source_url: html: https://shopify.dev/docs/api/customer/latest/mutations/subscriptioncontractfetchdeliveryoptions md: https://shopify.dev/docs/api/customer/latest/mutations/subscriptioncontractfetchdeliveryoptions.md --- # subscription​Contract​Fetch​Delivery​Options mutation Fetches the available delivery options for a Subscription Contract. ## Arguments * address [Customer​Address​Input](https://shopify.dev/docs/api/customer/latest/input-objects/CustomerAddressInput) The address to deliver the subscription contract to. * subscription​Contract​Id [ID!](https://shopify.dev/docs/api/customer/latest/scalars/ID) required The ID of the subscription contract. *** ## Subscription​Contract​Fetch​Delivery​Options​Payload returns * delivery​Options​Result [Subscription​Delivery​Options​Result](https://shopify.dev/docs/api/customer/latest/unions/SubscriptionDeliveryOptionsResult) The available delivery options for a given delivery address. Returns `null` for pending requests. * user​Errors [\[Subscription​Contract​User​Error!\]!](https://shopify.dev/docs/api/customer/latest/objects/SubscriptionContractUserError) non-null The list of errors that occurred from executing the mutation. *** ## Examples * ### subscriptionContractFetchDeliveryOptions reference ## Mutation Reference ```graphql mutation subscriptionContractFetchDeliveryOptions($subscriptionContractId: ID!, $address: CustomerAddressInput) { subscriptionContractFetchDeliveryOptions(subscriptionContractId: $subscriptionContractId, address: $address) { deliveryOptionsResult { # SubscriptionDeliveryOptionsResult fields } userErrors { field message } } } ``` ## Input ```json { "subscriptionContractId": "gid://shopify//10079785100", "address": { "firstName": "", "lastName": "", "address1": "", "address2": "", "city": "", "company": "", "territoryCode": "", "phoneNumber": "", "zoneCode": "", "zip": "" } } ```