--- title: companyContactDelete - GraphQL Admin description: Deletes a company contact. api_version: 2025-10 api_name: admin type: mutation api_type: graphql source_url: html: https://shopify.dev/docs/api/admin-graphql/latest/mutations/companycontactdelete md: https://shopify.dev/docs/api/admin-graphql/latest/mutations/companycontactdelete.md --- # company​Contact​Delete mutation Requires `write_customers` access scope or `write_companies` access scope. Also: The API client must be installed on a Shopify Plus store. Deletes a company contact. ## Arguments * company​Contact​Id [ID!](https://shopify.dev/docs/api/admin-graphql/latest/scalars/ID) required The ID of the company contact to delete. *** ## Company​Contact​Delete​Payload returns * deleted​Company​Contact​Id [ID](https://shopify.dev/docs/api/admin-graphql/latest/scalars/ID) The ID of the deleted company contact. * user​Errors [\[Business​Customer​User​Error!\]!](https://shopify.dev/docs/api/admin-graphql/latest/objects/BusinessCustomerUserError) non-null The list of errors that occurred from executing the mutation. *** ## Examples * ### companyContactDelete reference ## Mutation Reference ```graphql mutation companyContactDelete($companyContactId: ID!) { companyContactDelete(companyContactId: $companyContactId) { deletedCompanyContactId userErrors { field message } } } ``` ## Input ```json { "companyContactId": "gid://shopify//10079785100" } ``` ##### Variables ``` { "companyContactId": "gid://shopify//10079785100" } ```