list-environments
Retrieve all environments in Confluent Cloud with pagination support using a token-based system to manage data efficiently.
Instructions
Get all environments in Confluent Cloud with pagination support
Input Schema
Name | Required | Description | Default |
---|---|---|---|
baseUrl | No | The base URL of the Confluent Cloud REST API. | |
pageToken | No | Token for the next page of environments |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"baseUrl": {
"default": "",
"description": "The base URL of the Confluent Cloud REST API.",
"format": "uri",
"type": "string"
},
"pageToken": {
"description": "Token for the next page of environments",
"type": "string"
}
},
"type": "object"
}