v58

latestOpenAPI 3.0.3Apache 2.0raw.githubusercontent.com2026-08-036490116.2 KB
Portal Categories

Update a portal category

User must have the ENVIRONMENT_DOCUMENTATION[update] permission.

put/portal-categories/{categoryId}

Path parameters

categoryIdstring uuid required

The unique ID of the portal category

Request body

titlestring required

The title of the portal category

descriptionstring

The description of the portal category

visibleboolean

Whether the portal category is visible on the portal

Example request

{
  "title": "Weather",
  "description": "APIs related to weather forecasts",
  "visible": true
}

Response

Updated portal category

idstring uuid required

The unique ID of the portal category

titlestring required

The title of the portal category

descriptionstring

The description of the portal category

visibleboolean

Whether the portal category is visible on the portal

Example response

{
  "id": "00f8c9e7-78fc-4907-b8c9-e778fc790750",
  "title": "Weather",
  "description": "APIs related to weather forecasts",
  "visible": true
}