action flickr_get_group_topic_by_id { label: "getGroupTopicByID" description: "Get information about a group discussion topic" provider: flickr method: GET path: "/rest?method=flickr.groups.discuss.topics.getInfo" encoding: json input: { type: "object" properties: { api_key: { type: "string" } group_id: { type: "string" } topic_id: { type: "string" } } required: ["api_key", "topic_id"] additionalProperties: false } output: { type: "object" properties: { stat: { type: "string" } topic: { 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" } can_reply: { type: "boolean" } count_replies: { type: "integer" } datecreate: { type: "string" } datelastpost: { type: "string" } iconfarm: { type: "string" } iconserver: { type: "string" } id: { type: "string" } is_locked: { type: "boolean" } is_pro: { type: "boolean" } is_sticky: { type: "boolean" } last_reply: { type: "string" } lastedit: { type: "string" } message: { type: "object" properties: { _content: { type: "string" } } } role: { type: "string" } subject: { type: "string" } } } } } }