Sign in

Update tax rate

documented

Update a tax rate.

POST /v1/tax_rates/{id}Billingno 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/tax_rates/{{$id}}" \
  -X POST \
  -u "{{STRIPE_API_KEY}}:" \
  -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  -d '{"active": {{$active}}, "country": "{{$country}}", "description": "{{$description}}", "display_name": "{{$display_name}}", "jurisdiction": "{{$jurisdiction}}", "metadata": {{$metadata}}, "state": "{{$state}}", "tax_type": "{{$tax_type}}"}'