action adafruit_all_group_feeds { label: "All feeds for current user in a given group" description: "The Group Feeds endpoint returns information about the user's feeds. The response includes the latest value of each feed, and other metadata about each feed, but only for feeds within the given group." provider: adafruit method: GET path: "/{username}/groups/{group_key}/feeds" encoding: json input: { type: "object" properties: { group_key: { type: "string" } username: { type: "string" } } required: ["group_key", "username"] additionalProperties: false } output: { type: "object" additionalProperties: true } }