action adafruit_add_feed_to_group { label: "Add an existing Feed to a Group" description: "" provider: adafruit method: POST path: "/{username}/groups/{group_key}/add" encoding: json input: { type: "object" properties: { feed_key: { type: "string" } group_key: { type: "string" } username: { type: "string" } } required: ["group_key", "username"] additionalProperties: false } output: { type: "object" additionalProperties: true } }