Get a Pricing Tier by Id
Get a specific pricing tier by its pricingTierId
.
GET /v1/pricing-tiers/:pricingTierId
Parameters
Parameter | Description | Type | Required |
---|---|---|---|
pricingTierId | Id of the pricing tier to retrieve. | URL param | yes |
Request
- Curl
- Go
- Java
- Node.js
- Python
- Ruby
- PHP
curl "https://api.warrant.dev/v1/pricing-tiers/growth-tier" \
-H "Authorization: ApiKey YOUR_KEY"
pricingTier, err := pricingtier.Get("growth-tier")
PricingTier pricingTier = client.getPricingTier("growth-tier");
const pricingTier = await warrantClient.PricingTier.get("growth-tier");
pricing_tier = warrant.PricingTier.get("growth-tier")
pricing_tier = Warrant::PricingTier.get("growth-tier")
Response
{
"pricingTierId": "growth-tier",
"name": "Growth Tier",
"description": "Grants a tenant access to all Growth plan features"
}