action bungie_forum_get_posts_threaded_paged_from_child { label: "Forum.GetPostsThreadedPagedFromChild" description: "Returns a thread of posts starting at the topicId of the input childPostId, optionally returning replies to those posts as well as the original parent." provider: bungie method: GET path: "/Forum/GetPostsThreadedPagedFromChild/{childPostId}/{page}/{pageSize}/{replySize}/{rootThreadMode}/{sortMode}/" encoding: json input: { type: "object" properties: { childPostId: { type: "integer" format: "int64" } page: { type: "integer" format: "int32" } pageSize: { type: "integer" format: "int32" } replySize: { type: "integer" format: "int32" } rootThreadMode: { type: "boolean" } showbanned: { type: "string" } sortMode: { type: "integer" format: "int32" } } required: ["childPostId", "page", "pageSize", "replySize", "rootThreadMode", "sortMode"] additionalProperties: false } output: { type: "object" additionalProperties: true } }