List Nacos config history
nacos_list_config_historyList revision history for a configuration entry, returning revision IDs (nid) to fetch individual versions. Enables auditing changes and retrieving past content through the history detail tool.
Instructions
List the revision history of a configuration entry. Each item carries the revision id (nid) that can be passed to nacos_get_config_history_detail to read that revision. Compatible with Nacos 1.x, 2.x and 3.x.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| group | No | Configuration group, e.g. DEFAULT_GROUP. | |
| dataId | Yes | Configuration data ID, e.g. application.yaml. | |
| pageNo | No | 1-based page number, defaults to 1. | |
| pageSize | No | Items per page between 1 and 500, defaults to 20. | |
| namespaceId | No | Namespace (tenant) ID. Omit to use the namespace configured for this server. The default namespace is "" on Nacos 1.x/2.x and "public" on Nacos 3.x; both are accepted. |