list_consumers
Retrieve and manage all consumers associated with a control plane, including details like IDs, usernames, custom IDs, tags, and statuses. Supports pagination with size and offset parameters for efficient data handling.
Instructions
List all consumers associated with a control plane.
INPUT:
controlPlaneId: String - ID of the control plane
size: Number - Number of consumers to return (1-1000, default: 100)
offset: String (optional) - Pagination offset token from previous response
OUTPUT:
metadata: Object - Contains controlPlaneId, size, offset, nextOffset, totalCount
consumers: Array - List of consumers with details for each including:
consumerId: String - Unique identifier for the consumer
username: String - Username for this consumer
customId: String - Custom identifier for this consumer
tags: Array - Tags associated with the consumer
enabled: Boolean - Whether the consumer is enabled
metadata: Object - Creation and update timestamps
relatedTools: Array - List of related tools for consumer analysis
Input Schema
Name | Required | Description | Default |
---|---|---|---|
controlPlaneId | Yes | Control Plane ID (obtainable from list-control-planes tool) | |
offset | No | Offset token for pagination (from previous response) | |
size | No | Number of consumers to return |