/entitlements/report/tiers - Per-tier slice of the add-on report

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://api.my.nethesis.it/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
{
  "my.nethesis.it MCP server": {
    "url": "https://api.my.nethesis.it/mcp"
  }
}

Close
GET /entitlements/report/tiers

Grants grouped by shop tier (variable products only), paginated and searchable by add-on display name, add-on id or tier label. Restricted to the caller's hierarchy (the whole fleet for the owner organization / a Super Admin).

Query parameters

  • page integer

    Default value is 1.

  • page_size integer

    Maximum value is 200. Default value is 10.

Responses

  • 200 application/json

    Report tiers retrieved successfully

    Hide response attributes Show response attributes object
    • code integer
    • message string
    • data object
      Hide data attributes Show data attributes object
      • tiers array[object]
        Hide tiers attributes Show tiers attributes object
        • entitlement string
        • display_name string
        • label string
        • count integer
      • total integer
      • page integer
      • page_size integer
  • 401 application/json

    Unauthorized - invalid or missing token

    Hide response attributes Show response attributes object
    • code integer
    • message string
    • data object | null
  • 403 application/json

    Forbidden - insufficient permissions

    Hide response attributes Show response attributes object
    • code integer
    • message string
    • data object | null
  • 500 application/json

    Internal server error

    Hide response attributes Show response attributes object
    • code integer
    • message string
    • data object | null
GET /entitlements/report/tiers
curl \
 --request GET 'https://api.your-domain.com/api/entitlements/report/tiers' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "code": 200,
  "message": "report tiers retrieved successfully",
  "data": {
    "tiers": [
      {
        "entitlement": "nsec-blacklist",
        "display_name": "Advanced Threat Shield",
        "label": "16 - 30 device",
        "count": 14
      }
    ],
    "total": 12,
    "page": 1,
    "page_size": 10
  }
}
Response examples (401)
{
  "code": 401,
  "message": "invalid token",
  "data": {}
}
Response examples (403)
{
  "code": 403,
  "message": "insufficient permissions",
  "data": {}
}
Response examples (500)
{
  "code": 500,
  "message": "internal server error",
  "data": {}
}