# CustomerAccessToken - storefront - OBJECT Version: 2025-01 ## Description A CustomerAccessToken represents the unique token required to make modifications to the customer object. ### Access Scopes `unauthenticated_read_customers` access scope. ## Fields * [accessToken](/docs/api/storefront/2025-01/scalars/String): String! - The customer’s access token. * [expiresAt](/docs/api/storefront/2025-01/scalars/DateTime): DateTime! - The date and time when the customer access token expires. ## Connections ## Related queries ## Related mutations * [customerAccessTokenCreate](/docs/api/storefront/2025-01/mutations/customerAccessTokenCreate) Creates a customer access token. The customer access token is required to modify the customer object in any way. * [customerAccessTokenCreateWithMultipass](/docs/api/storefront/2025-01/mutations/customerAccessTokenCreateWithMultipass) Creates a customer access token using a [multipass token](https://shopify.dev/api/multipass) instead of email and password. A customer record is created if the customer doesn't exist. If a customer record already exists but the record is disabled, then the customer record is enabled. * [customerAccessTokenRenew](/docs/api/storefront/2025-01/mutations/customerAccessTokenRenew) Renews a customer access token. Access token renewal must happen *before* a token expires. If a token has already expired, a new one should be created instead via `customerAccessTokenCreate`. * [customerActivateByUrl](/docs/api/storefront/2025-01/mutations/customerActivateByUrl) Activates a customer with the activation url received from `customerCreate`. * [customerActivate](/docs/api/storefront/2025-01/mutations/customerActivate) Activates a customer. * [customerResetByUrl](/docs/api/storefront/2025-01/mutations/customerResetByUrl) "Resets a customer’s password with the reset password URL received from a reset password email. You can send a reset password email with the [`customerRecover`](https://shopify.dev/api/storefront/latest/mutations/customerRecover) mutation." * [customerReset](/docs/api/storefront/2025-01/mutations/customerReset) "Resets a customer’s password with the token received from a reset password email. You can send a reset password email with the [`customerRecover`](https://shopify.dev/api/storefront/latest/mutations/customerRecover) mutation." * [customerUpdate](/docs/api/storefront/2025-01/mutations/customerUpdate) Updates an existing customer. ## Related Unions ## Examples