action flickr_get_group_topic_replies_by_id { label: "getGroupTopicRepliesByID" description: "Get information on a group topic reply" provider: flickr method: GET path: "/rest?method=flickr.groups.discuss.replies.getInfo" encoding: json input: { type: "object" properties: { api_key: { type: "string" } group_id: { type: "string" } reply_id: { type: "string" } topic_id: { type: "string" } } required: ["api_key", "reply_id", "topic_id"] additionalProperties: false } output: { type: "object" properties: { reply: { type: "object" properties: { author: { type: "string" } author_is_deleted: { type: "boolean" } author_path_alias: { type: "string" } authorname: { type: "string" } can_delete: { type: "boolean" } can_edit: { type: "boolean" } datecreate: { type: "string" } iconfarm: { type: "string" } iconserver: { type: "string" } id: { type: "string" } is_pro: { type: "boolean" } lastedit: { type: "string" } message: { type: "object" properties: { _content: { type: "string" } } } } } stat: { type: "string" } } } }