Update store
documentedModify one or more properties of a store.
PATCH /stores/{store_id}Storesno 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://api.foxycart.com/stores/{{$store_id}}" \
-X PATCH \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "FOXY-API-VERSION: 1" \
-H "Content-Type: application/json" \
-H "Accept: application/hal+json" \
-d '{"store_name": "{{$store_name}}", "store_domain": "{{$store_domain}}", "store_url": "{{$store_url}}", "region": "{{$region}}", "postal_code": "{{$postal_code}}", "from_email": "{{$from_email}}", "store_email": "{{$store_email}}", "receipt_continue_url": "{{$receipt_continue_url}}"}'