Create customer
documentedCreate a new customer.
POST /admin/api/2026-01/customers.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://{{$shop_domain}}.myshopify.com/admin/api/2026-01/customers.json" \
-X POST \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "X-Shopify-Access-Token: {{OAUTH2_ACCESS_TOKEN}}" \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-d '{"customer": {"first_name": "{{$first_name}}", "last_name": "{{$last_name}}", "email": "{{$email}}", "phone": "{{$phone}}", "verified_email": true, "addresses": [{"address1": "{{$address1}}","city": "{{$city}}","province": "{{$province}}","country": "{{$country}}","zip": "{{$zip}}"}]}}'