action flickr_get_group_discussions_by_id { label: "getGroupDiscussionsByID" description: "Get a list of discussion topics in a group." provider: flickr method: GET path: "/rest?method=flickr.groups.discuss.topics.getList" encoding: json input: { type: "object" properties: { api_key: { type: "string" } group_id: { type: "string" } page: { type: "number" } per_page: { type: "number" } } required: ["api_key"] additionalProperties: false } output: { type: "object" properties: { iconfarm: { type: "number" } iconserver: { type: "number" } ispoolmoderated: { type: "boolean" } lang: { type: "string" } members: { type: "number" } name: { type: "string" } page: { type: "number" } pages: { type: "number" } per_page: { type: "number" } privacy: { type: "number" } topics: { type: "array" items: { 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" } } } } total: { type: "number" } } } }