get_all_badges
Retrieve all available badges for your organization to view badge IDs and names for management and selection purposes.
Instructions
Retrieve all available badges for the authenticated organization. Returns a list of badges with their IDs and names.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of badges to return (default: 100, max: 100) |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 100,
"description": "Maximum number of badges to return (default: 100, max: 100)",
"maximum": 100,
"minimum": 1,
"type": "number"
}
},
"required": [],
"type": "object"
}