action stackexchange_get_users_ids_timeline { label: "get_users_ids_timeline" description: "Returns a subset of the actions the users in {ids} have taken on the site.\n \nThis method returns users' posts, edits, and earned badges in the order they were accomplished. It is possible to filter to just a window of activity using the fromdate and todate parameters.\n \n{ids} can contain up to 100 semicolon delimited ids, to find ids programatically look for user_id on user or shallow_user objects.\n \nThis method returns a list of user timeline objects.\n" provider: stackexchange method: GET path: "/users/{ids}/timeline" encoding: json input: { type: "object" properties: { callback: { type: "string" } filter: { type: "string" } fromdate: { type: "integer" } ids: { type: "string" } page: { type: "integer" } pagesize: { type: "integer" } site: { type: "string" } todate: { type: "integer" } } required: ["ids", "site"] additionalProperties: false } output: { type: "object" additionalProperties: true } }