Get a Pricing Tier by Id
Get a specific pricing tier by its 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 Get Object endpoint instead.
Endpoint
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"
}