This commit is contained in:
a2a-platform
2026-06-27 01:01:39 +00:00
commit f2c2274e5e
76 changed files with 208440 additions and 0 deletions

59
skills/tax-rates/SKILL.md Normal file
View File

@@ -0,0 +1,59 @@
---
name: tax-rates-routes
description: Handle 4 OpenAPI operation(s) under /v1/tax_rates for the tax rates route group.
---
# tax rates API Routes
Handle 4 OpenAPI operation(s) under /v1/tax_rates for the tax rates route group.
Use the generated operation tools to make real API calls. Do not invent API responses.
If a tool reports missing setup, return the exact setup field name to the caller.
For write, update, or delete operations, state the intended action before calling the tool.
## Operations
### get_tax_rates
- Operation ID: `get_tax_rates`
- Route: `GET /v1/tax_rates`
- Mode: READ
- Summary: List all tax rates
- Parameters:
- `active` in `query`
- `created` in `query`
- `ending_before` in `query`
- `expand` in `query`
- `inclusive` in `query`
- `limit` in `query`
- `starting_after` in `query`
- Body: JSON request body accepted.
### post_tax_rates
- Operation ID: `post_tax_rates`
- Route: `POST /v1/tax_rates`
- Mode: WRITE
- Summary: Create a tax rate
- Body: JSON request body accepted.
### get_tax_rates_tax_rate
- Operation ID: `get_tax_rates_tax_rate`
- Route: `GET /v1/tax_rates/{tax_rate}`
- Mode: READ
- Summary: Retrieve a tax rate
- Parameters:
- `expand` in `query`
- `tax_rate` in `path` required
- Body: JSON request body accepted.
### post_tax_rates_tax_rate
- Operation ID: `post_tax_rates_tax_rate`
- Route: `POST /v1/tax_rates/{tax_rate}`
- Mode: WRITE
- Summary: Update a tax rate
- Parameters:
- `tax_rate` in `path` required
- Body: JSON request body accepted.