--- title: shippingPackageMakeDefault - GraphQL Admin description: |- Set a shipping package as the default. The default shipping package is the one used to calculate shipping costs on checkout. api_version: 2025-10 api_name: admin type: mutation api_type: graphql source_url: html: https://shopify.dev/docs/api/admin-graphql/latest/mutations/shippingpackagemakedefault md: https://shopify.dev/docs/api/admin-graphql/latest/mutations/shippingpackagemakedefault.md --- # shipping​Package​Make​Default mutation Requires Any of `shipping` access scopes or `manage_delivery_settings` user permission. Set a shipping package as the default. The default shipping package is the one used to calculate shipping costs on checkout. ## Arguments * id [ID!](https://shopify.dev/docs/api/admin-graphql/latest/scalars/ID) required The ID of the shipping package to set as the default. *** ## Shipping​Package​Make​Default​Payload returns * user​Errors [\[User​Error!\]!](https://shopify.dev/docs/api/admin-graphql/latest/objects/UserError) non-null The list of errors that occurred from executing the mutation. *** ## Examples * ### shippingPackageMakeDefault reference ## Mutation Reference ```graphql mutation shippingPackageMakeDefault($id: ID!) { shippingPackageMakeDefault(id: $id) { userErrors { field message } } } ``` ## Input ```json { "id": "gid://shopify//10079785100" } ``` ##### Variables ``` { "id": "gid://shopify//10079785100" } ```