Sign in

Update customer

documented

Update a customer.

POST /v1/customers/{id}Customersno implementation yet0 runs
No 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.stripe.com/v1/customers/{{$id}}" \
  -X POST \
  -H "Authorization: Bearer {{STRIPE_API_KEY}}" \
  -H "Accept: application/json" \
  -H "Content-Type: application/x-www-form-urlencoded" \
  -d 'email={{$email}}' \
  -d 'description={{$description}}' \
  -d 'name={{$name}}' \
  -d 'phone={{$phone}}' \
  -d 'address[line1]={{$address_line1}}' \
  -d 'address[line2]={{$address_line2}}' \
  -d 'address[city]={{$address_city}}' \
  -d 'address[state]={{$address_state}}' \
  -d 'address[postal_code]={{$address_postal_code}}' \
  -d 'address[country]={{$address_country}}'
Update customer · Stripe · OpenIntegrations