list_addon_services
View all available Heroku add-on services with basic details or a detailed JSON response for additional metadata. Use this to quickly identify and manage add-on options for your Heroku applications.
Instructions
List available Heroku add-on services. Use this tool when you need to view all available add-on services. Returns a list of add-on services with their basic information.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
json | No | Controls the output format. When true, returns a detailed JSON response containing additional add-on service metadata such as sharing options and supported app generations. When false or omitted, returns a simplified text format including only the add-on service slug, name and state. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"json": {
"description": "Controls the output format. When true, returns a detailed JSON response containing additional add-on service metadata such as sharing options and supported app generations. When false or omitted, returns a simplified text format including only the add-on service slug, name and state.",
"type": "boolean"
}
},
"type": "object"
}