action discourse_list_user_actions { label: "Get a list of user actions" provider: discourse method: GET path: "/user_actions.json" encoding: json input: { type: "object" properties: { filter: { type: "string" } offset: { type: "integer" } username: { type: "string" } } required: ["filter", "offset", "username"] additionalProperties: false } output: { required: ["user_actions"] properties: { user_actions: { type: "array" items: { type: "object" required: ["excerpt", "action_type", "created_at", "avatar_template", "acting_avatar_template", "slug", "topic_id", "target_user_id", "target_name", "target_username", "post_number", "post_id", "username", "name", "user_id", "acting_username", "acting_name", "acting_user_id", "title", "deleted", "hidden", "post_type", "action_code", "category_id", "closed", "archived"] properties: { acting_avatar_template: { type: "string" } acting_name: { type: ["string", "null"] } acting_user_id: { type: "integer" } acting_username: { type: "string" } action_code: { type: ["string", "null"] } action_type: { type: "integer" } archived: { type: "boolean" } avatar_template: { type: "string" } category_id: { type: "integer" } closed: { type: "boolean" } created_at: { type: "string" } deleted: { type: "boolean" } excerpt: { type: "string" } hidden: { type: ["string", "null"] } name: { type: ["string", "null"] } post_id: { type: ["string", "null"] } post_number: { type: "integer" } post_type: { type: ["string", "null"] } slug: { type: "string" } target_name: { type: ["string", "null"] } target_user_id: { type: "integer" } target_username: { type: "string" } title: { type: "string" } topic_id: { type: "integer" } user_id: { type: "integer" } username: { type: "string" } } additionalProperties: false } } } additionalProperties: false } }