List organizations that can be added to rebranding

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/organizations/available

The organizations in the caller's scope that do not have rebranding enabled yet, for the picker.

Query parameters

  • limit integer

    Clamped to 200; an unparsable value falls back to the default.

    Minimum value is 1, maximum value is 200. Default value is 50.

Responses

  • 200 application/json

    Available organizations retrieved

    Hide response attributes Show response attributes object
    • code integer
    • message string
    • data object
      Hide data attribute Show data attribute object
      • organizations array[object]

        An organization that can still be added to rebranding.

        Hide organizations attributes Show organizations attributes object

        An organization that can still be added to rebranding.

        • id string
        • logto_id string
        • name string
        • organization_type string

          Values are distributor, reseller, or customer.

  • 403 application/json

    Forbidden - insufficient permissions

    Hide response attributes Show response attributes object
    • code integer
    • message string
    • data object | null
GET /rebranding/organizations/available
curl \
 --request GET 'https://api.your-domain.com/api/rebranding/organizations/available' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "code": 42,
  "message": "string",
  "data": {
    "organizations": [
      {
        "id": "string",
        "logto_id": "string",
        "name": "string",
        "organization_type": "distributor"
      }
    ]
  }
}
Response examples (403)
{
  "code": 403,
  "message": "insufficient permissions",
  "data": {}
}