Version: 2024-10
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 customerAddTaxExemptions($customerId: ID!, $taxExemptions: [TaxExemption!]!) { customerAddTaxExemptions(customerId: $customerId, taxExemptions: $taxExemptions) { userErrors { field message } customer { id } } }\",\n \"variables\": {\n \"customerId\": \"gid://shopify/Customer/839649557\",\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 customerAddTaxExemptions($customerId: ID!, $taxExemptions: [TaxExemption!]!) {\n customerAddTaxExemptions(customerId: $customerId, taxExemptions: $taxExemptions) {\n userErrors {\n field\n message\n }\n customer {\n id\n }\n }\n }`,\n \"variables\": {\n \"customerId\": \"gid://shopify/Customer/839649557\",\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 customerAddTaxExemptions($customerId: ID!, $taxExemptions: [TaxExemption!]!) {\n customerAddTaxExemptions(customerId: $customerId, taxExemptions: $taxExemptions) {\n userErrors {\n field\n message\n }\n customer {\n id\n }\n }\n }\nQUERY\n\nvariables = {\n \"customerId\": \"gid://shopify/Customer/839649557\",\n \"taxExemptions\": [\"CA_BC_RESELLER_EXEMPTION\", \"CA_STATUS_CARD_EXEMPTION\"]\n}\n\nresponse = client.query(query: query, variables: variables)\n" PHP example: "use Shopify\\Clients\\Graphql;\n\n$client = new Graphql(\"your-development-store.myshopify.com\", $accessToken);\n$query = <<\"gid://shopify/Customer/839649557\",\n \"taxExemptions\" => [\"CA_BC_RESELLER_EXEMPTION\", \"CA_STATUS_CARD_EXEMPTION\"],\n];\n\n$response = $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 customerAddTaxExemptions($customerId: ID!, $taxExemptions: [TaxExemption!]!) {\n customerAddTaxExemptions(customerId: $customerId, taxExemptions: $taxExemptions) {\n userErrors {\n field\n message\n }\n customer {\n id\n }\n }\n }`,\n {\n variables: {\n \"customerId\": \"gid://shopify/Customer/839649557\",\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 customerAddTaxExemptions($customerId: ID!, $taxExemptions: [TaxExemption!]!) {\n customerAddTaxExemptions(customerId: $customerId, taxExemptions: $taxExemptions) {\n userErrors {\n field\n message\n }\n customer {\n id\n }\n }\n}"
input: { "customerId": "gid://shopify/Customer/839649557", "taxExemptions": [ "CA_BC_RESELLER_EXEMPTION", "CA_STATUS_CARD_EXEMPTION" ] }
response: { "data": { "customerAddTaxExemptions": { "userErrors": [], "customer": { "id": "gid://shopify/Customer/839649557" } } } }