--- title: delegateAccessTokenDestroy - GraphQL Admin description: Destroys a delegate access token. api_version: 2025-10 api_name: admin type: mutation api_type: graphql source_url: html: https://shopify.dev/docs/api/admin-graphql/latest/mutations/delegateaccesstokendestroy md: https://shopify.dev/docs/api/admin-graphql/latest/mutations/delegateaccesstokendestroy.md --- # delegate​Access​Token​Destroy mutation Destroys a delegate access token. ## Arguments * access​Token [String!](https://shopify.dev/docs/api/admin-graphql/latest/scalars/String) required Provides the delegate access token to destroy. *** ## Delegate​Access​Token​Destroy​Payload returns * shop [Shop!](https://shopify.dev/docs/api/admin-graphql/latest/objects/Shop) non-null The user's shop. * status [Boolean](https://shopify.dev/docs/api/admin-graphql/latest/scalars/Boolean) The status of the delegate access token destroy operation. Returns true if successful. * user​Errors [\[Delegate​Access​Token​Destroy​User​Error!\]!](https://shopify.dev/docs/api/admin-graphql/latest/objects/DelegateAccessTokenDestroyUserError) non-null The list of errors that occurred from executing the mutation. *** ## Examples * ### delegateAccessTokenDestroy reference ## Mutation Reference ```graphql mutation delegateAccessTokenDestroy($accessToken: String!) { delegateAccessTokenDestroy(accessToken: $accessToken) { shop { # Shop fields } status userErrors { field message } } } ``` ## Input ```json { "accessToken": "" } ``` ##### Variables ``` { "accessToken": "" } ```