- Home
- API MCP Server
- tools
- support
- other
- Tax Exempt Request
Tax Exempt Request
Raises a tax exemption verification request. This will ultimately create a support ticket and assign it to our billing department. If verified and approved then the customer will not be levied sale taxes.
| Tool | Description |
|---|---|
f5xc-api-support-tax-exempt-request-create | Tax exemption verification request. |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with Tax Exempt Request resources:
Create Tax Exempt Request
Section titled “Create Tax Exempt Request”“Create a tax-exempt-request named ‘example’ in the ‘production’ namespace”
CURL Examples
Section titled “CURL Examples”# List resourcescurl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/tax_exempt_requests" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json"
# Get specific resourcecurl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/tax_exempt_requests/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json"
# Create resourcecurl -X POST "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/tax_exempt_requests" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json" \ -d @tax_exempt_request.json
# Delete resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/tax_exempt_requests/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"