Count the organizations with rebranding enabled, by type

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 /rebranding/summary

Responses

  • 200 application/json

    Summary retrieved

    Hide response attributes Show response attributes object
    • code integer
    • message string
    • data object
      Hide data attributes Show data attributes object
      • total integer
      • distributors integer
      • resellers integer
      • customers integer
  • 401 application/json

    Unauthorized - invalid or missing token

    Hide response attributes Show response attributes object
    • code integer
    • message string
    • data object | null
GET /rebranding/summary
curl \
 --request GET 'https://api.your-domain.com/api/rebranding/summary' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "code": 42,
  "message": "string",
  "data": {
    "total": 4,
    "distributors": 2,
    "resellers": 2,
    "customers": 0
  }
}
Response examples (401)
{
  "code": 401,
  "message": "invalid token",
  "data": {}
}