Delete a Pricing Tier
Delete a pricing Tier by pricingTierId
.
caution
This endpoint has been deprecated and will be phased out at the end of 2023. Please update any existing usages of it to use the Delete Object endpoint instead.
Endpoint
DELETE /v1/pricing-tiers/:pricingTierId
Parameters
Parameter | Description | Type | Required |
---|---|---|---|
pricingTierId | The pricingTierId of the pricing tier to delete. | URL param | yes |
Request
- cURL
- Go
- Java
- Node.js
- Python
- Ruby
- PHP
- CLI
curl "https://api.warrant.dev/v1/pricing-tiers/growth-tier" \
-X DELETE \
-H "Authorization: ApiKey YOUR_KEY" \
err := pricingtier.Delete("growth-tier")
client.deletePricingTier("growth-tier");
await warrantClient.PricingTier.delete("growth-tier");
warrant.PricingTier.delete("growth-tier")
Warrant::PricingTier.delete("growth-tier")
Response
200 OK