# customerRemoveTaxExemptions - admin-graphql - MUTATION Version: 2024-10 ## Description Remove tax exemptions from a customer. ### Access Scopes `write_customers` access scope. ## Arguments * [customerId](/docs/api/admin-graphql/2024-10/scalars/ID): ID! - The ID of the customer to update. * [taxExemptions](/docs/api/admin-graphql/2024-10/enums/TaxExemption): TaxExemption! - The list of tax exemptions to remove for the customer, in the format of an array or a comma-separated list. Example values: `["CA_BC_RESELLER_EXEMPTION", "A_STATUS_CARD_EXEMPTION"]`, `"CA_BC_RESELLER_EXEMPTION, CA_STATUS_CARD_EXEMPTION"`. ## Returns * [customer](/docs/api/admin-graphql/2024-10/objects/Customer): Customer The updated customer. * [userErrors](/docs/api/admin-graphql/2024-10/objects/UserError): UserError! The list of errors that occurred from executing the mutation. ## Examples ### Remove tax exemptions from a customer Curl example: "curl -X POST \\\nhttps://your-development-store.myshopify.com/admin/api/2024-10/graphql.json \\\n-H 'Content-Type: application/json' \\\n-H 'X-Shopify-Access-Token: {access_token}' \\\n-d '{\n\"query\": \"mutation customerRemoveTaxExemptions($customerId: ID!, $taxExemptions: [TaxExemption!]!) { customerRemoveTaxExemptions(customerId: $customerId, taxExemptions: $taxExemptions) { userErrors { field message } customer { id taxExemptions } } }\",\n \"variables\": {\n \"customerId\": \"gid://shopify/Customer/554122808\",\n \"taxExemptions\": [\n \"CA_BC_RESELLER_EXEMPTION\",\n \"CA_STATUS_CARD_EXEMPTION\"\n ]\n }\n}'\n" Node example: "const client = new shopify.clients.Graphql({session});\nconst data = await client.query({\n data: {\n \"query\": `mutation customerRemoveTaxExemptions($customerId: ID!, $taxExemptions: [TaxExemption!]!) {\n customerRemoveTaxExemptions(customerId: $customerId, taxExemptions: $taxExemptions) {\n userErrors {\n field\n message\n }\n customer {\n id\n taxExemptions\n }\n }\n }`,\n \"variables\": {\n \"customerId\": \"gid://shopify/Customer/554122808\",\n \"taxExemptions\": [\n \"CA_BC_RESELLER_EXEMPTION\",\n \"CA_STATUS_CARD_EXEMPTION\"\n ]\n },\n },\n});\n" Ruby example: "session = ShopifyAPI::Auth::Session.new(\n shop: \"your-development-store.myshopify.com\",\n access_token: access_token\n)\nclient = ShopifyAPI::Clients::Graphql::Admin.new(\n session: session\n)\n\nquery = <<~QUERY\n mutation customerRemoveTaxExemptions($customerId: ID!, $taxExemptions: [TaxExemption!]!) {\n customerRemoveTaxExemptions(customerId: $customerId, taxExemptions: $taxExemptions) {\n userErrors {\n field\n message\n }\n customer {\n id\n taxExemptions\n }\n }\n }\nQUERY\n\nvariables = {\n \"customerId\": \"gid://shopify/Customer/554122808\",\n \"taxExemptions\": [\"CA_BC_RESELLER_EXEMPTION\", \"CA_STATUS_CARD_EXEMPTION\"]\n}\n\nresponse = client.query(query: query, variables: variables)\n" Remix example: "const { admin } = await authenticate.admin(request);\n\nconst response = await admin.graphql(\n `#graphql\n mutation customerRemoveTaxExemptions($customerId: ID!, $taxExemptions: [TaxExemption!]!) {\n customerRemoveTaxExemptions(customerId: $customerId, taxExemptions: $taxExemptions) {\n userErrors {\n field\n message\n }\n customer {\n id\n taxExemptions\n }\n }\n }`,\n {\n variables: {\n \"customerId\": \"gid://shopify/Customer/554122808\",\n \"taxExemptions\": [\n \"CA_BC_RESELLER_EXEMPTION\",\n \"CA_STATUS_CARD_EXEMPTION\"\n ]\n },\n },\n);\n\nconst data = await response.json();\n" Graphql query: "mutation customerRemoveTaxExemptions($customerId: ID!, $taxExemptions: [TaxExemption!]!) {\n customerRemoveTaxExemptions(customerId: $customerId, taxExemptions: $taxExemptions) {\n userErrors {\n field\n message\n }\n customer {\n id\n taxExemptions\n }\n }\n}" #### Graphql Input { "customerId": "gid://shopify/Customer/554122808", "taxExemptions": [ "CA_BC_RESELLER_EXEMPTION", "CA_STATUS_CARD_EXEMPTION" ] } #### Graphql Response { "data": { "customerRemoveTaxExemptions": { "userErrors": [], "customer": { "id": "gid://shopify/Customer/554122808", "taxExemptions": [] } } } }