API Catalog
This documentation is for the preview version of the Dev Portal. If you are using the legacy developer portal, please refer to the docs.
If you're dealing with multiple APIs and multiple OpenAPI files, the API Catalog comes in handy. It creates an overview of all your APIs and lets you organize them into categories and tags.
Enable API Catalog
The first step to enable the API Catalog, you need to add a catalogs
object to your Dev Portal configuration file.
zudoku.config.ts(js)
You can then add your APIs to the catalog by adding the categories
property to your API configuration.
zudoku.config.ts(js)
Advanced Configuration
Select APIs to show in the catalog
You can select which APIs are shown in the catalog by using the items
property. The items
property is an array of navigation IDs of the APIs you want to show in the catalog.
zudoku.config.ts(js)
Filtering catalog items
You can filter which APIs are shown in the catalog by using the filterItems
property. The function receives the items and context as arguments.
zudoku.config.ts(js)