Skip to main content
Retrieves detailed information about a specific addon.

Query

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
    }
  }
}

Parameters

input
GetPackageByRefIdInput
required
Input parameters for retrieving the addon

Return Type

Returns an Addon object with full addon details.