action trashnothing_get_user_group_notices { label: "List current users' group notices" provider: trashnothing method: GET path: "/users/me/notices" encoding: json input: { type: "object" properties: { group_ids: { type: "string" } } additionalProperties: false } output: { type: "array" items: { type: "object" description: "Group notices are created by group moderators in order to provide useful information to the group members (eg. group rules and guidelines)." properties: { content: { type: "string" } date: { type: "string" format: "date-time" description: "The UTC date and time when this notice was received." } group_id: { type: "string" } notice_id: { type: "string" } title: { type: "string" } } } } }