Update customer
documentedUpdate a customer.
PUT /admin/api/2026-01/customers/{customer_id}.jsonCustomersno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://{{store_domain}}/admin/api/2026-01/customers/{{$customer_id}}.json" \
-X PUT \
-H "X-Shopify-Access-Token: {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"customer": {"id": {{$customer_id}}, "email": "{{$email}}", "first_name": "{{$first_name}}", "last_name": "{{$last_name}}", "phone": "{{$phone}}", "note": "{{$note}}", "tags": "{{$tags}}"}}'