Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
query GetAddon($input: GetPackageByRefIdInput!) { getAddonByRefId(input: $input) { refId displayName description status pricingType maxQuantity versionNumber product { refId displayName } prices { billingModel billingPeriod price { amount currency } } packageEntitlements { ... on PackageEntitlement { feature { refId displayName featureType } hasUnlimitedUsage usageLimit } } dependencies { refId displayName } } }
{ "input": { "refId": "addon-extra-seats" } }
{ "data": { "getAddonByRefId": { "refId": "addon-extra-seats", "displayName": "Extra Seats", "description": "Add more team members to your workspace", "status": "PUBLISHED", "pricingType": "PAID", "maxQuantity": 100, "versionNumber": 2, "product": { "refId": "product-main", "displayName": "Main Product" }, "prices": [ { "billingModel": "FLAT_FEE", "billingPeriod": "MONTHLY", "price": { "amount": 10, "currency": "USD" } } ], "packageEntitlements": [ { "feature": { "refId": "feature-seats", "displayName": "Team Seats", "featureType": "NUMBER" }, "hasUnlimitedUsage": false, "usageLimit": 1 } ], "dependencies": [] } } }
Show properties
Addon