--- title: customerAccessTokenCreateWithMultipass - Storefront API description: > Creates a [`CustomerAccessToken`](/docs/api/storefront/2026-01/objects/CustomerAccessToken) using a [multipass token](https://shopify.dev/docs/api/multipass) instead of email and password. This enables single sign-on for customers who authenticate through an external system. If the customer doesn't exist in Shopify, then a new customer record is created automatically. If the customer exists but the record is disabled, then the customer record is re-enabled. > Caution: > Multipass tokens are only valid for 15 minutes and can only be used once. Generate tokens on-the-fly when needed rather than in advance. api_version: 2026-01 api_name: storefront type: mutation api_type: graphql source_url: html: >- https://shopify.dev/docs/api/storefront/latest/mutations/customerAccessTokenCreateWithMultipass md: >- https://shopify.dev/docs/api/storefront/latest/mutations/customerAccessTokenCreateWithMultipass.md --- # customer​Access​Token​Create​With​Multipass mutation Requires `unauthenticated_write_customers` access scope. Creates a [`CustomerAccessToken`](https://shopify.dev/docs/api/storefront/2026-01/objects/CustomerAccessToken) using a [multipass token](https://shopify.dev/docs/api/multipass) instead of email and password. This enables single sign-on for customers who authenticate through an external system. If the customer doesn't exist in Shopify, then a new customer record is created automatically. If the customer exists but the record is disabled, then the customer record is re-enabled. *** **Caution:** Multipass tokens are only valid for 15 minutes and can only be used once. Generate tokens on-the-fly when needed rather than in advance. *** ## Arguments * multipass​Token [String!](https://shopify.dev/docs/api/storefront/latest/scalars/String) required A valid [multipass token](https://shopify.dev/api/multipass) to be authenticated. *** ## Customer​Access​Token​Create​With​Multipass​Payload returns * customer​Access​Token [Customer​Access​Token](https://shopify.dev/docs/api/storefront/latest/objects/CustomerAccessToken) An access token object associated with the customer. * customer​User​Errors [\[Customer​User​Error!\]!](https://shopify.dev/docs/api/storefront/latest/objects/CustomerUserError) non-null The list of errors that occurred from executing the mutation. *** ## Examples * ### customerAccessTokenCreateWithMultipass reference