# CustomerAccessTokenDeletePayload Payload returned by the customerAccessTokenDelete mutation. This type contains the result of attempting to delete a customer access token, including any errors that occurred during the operation. ## Type Definition ```graphql type CustomerAccessTokenDeletePayload { deletedAccessToken: String customerUserErrors: [CustomerUserError]! } ``` ## Fields | Field | Type | Description | |-------|------|-------------| | deletedAccessToken | String | The deleted access token | | customerUserErrors | [CustomerUserError]! | List of errors that occurred during the operation | ## Relationships This type is returned by the `customerAccessTokenDelete` mutation. It contains a list of `CustomerUserError` objects that provide detailed information about any errors encountered during the token deletion process. ## Example ```graphql { deletedAccessToken customerUserErrors { code field message } } ``` ## Implements This type does not implement any interfaces. ## Related Types - [CustomerUserError](/reference/storefront/1.3.0/objects/customer-user-error)