action discourse_list_posts { label: "List latest posts across topics" provider: discourse method: GET path: "/posts.json" encoding: json input: { type: "object" properties: { "Api-Key": { type: "string" } "Api-Username": { type: "string" } before: { type: "string" } } required: ["Api-Key", "Api-Username"] additionalProperties: false } output: { type: "object" properties: { latest_posts: { type: "array" items: { type: "object" properties: { actions_summary: { type: "array" items: { type: "object" properties: { can_act: { type: "boolean" } id: { type: "integer" } } } } admin: { type: "boolean" } avatar_template: { type: "string" } can_delete: { type: "boolean" } can_edit: { type: "boolean" } can_recover: { type: "boolean" } can_view_edit_history: { type: "boolean" } can_wiki: { type: "boolean" } category_id: { type: "integer" } cooked: { type: "string" } created_at: { type: "string" } deleted_at: { type: ["string", "null"] } display_username: { type: "string" } edit_reason: { type: ["string", "null"] } flair_bg_color: { type: ["string", "null"] } flair_color: { type: ["string", "null"] } flair_name: { type: ["string", "null"] } flair_url: { type: ["string", "null"] } hidden: { type: "boolean" } id: { type: "integer" } incoming_link_count: { type: "integer" } moderator: { type: "boolean" } name: { type: "string" } post_number: { type: "integer" } post_type: { type: "integer" } primary_group_name: { type: ["string", "null"] } quote_count: { type: "integer" } raw: { type: "string" } readers_count: { type: "integer" } reads: { type: "integer" } reply_count: { type: "integer" } reply_to_post_number: { type: ["string", "null"] } reviewable_id: { type: ["string", "null"] } reviewable_score_count: { type: "integer" } reviewable_score_pending_count: { type: "integer" } score: { type: "number" } staff: { type: "boolean" } topic_html_title: { type: "string" } topic_id: { type: "integer" } topic_slug: { type: "string" } topic_title: { type: "string" } trust_level: { type: "integer" } updated_at: { type: "string" } user_deleted: { type: "boolean" } user_id: { type: "integer" } user_title: { type: ["string", "null"] } username: { type: "string" } version: { type: "integer" } wiki: { type: "boolean" } yours: { type: "boolean" } } } } } } }