action stackexchange_get_revisions_ids { label: "get_revisions_ids" description: "Returns edit revisions identified by ids in {ids}.\n \n{ids} can contain up to 20 semicolon delimited ids, to find ids programatically look for revision_guid on revision objects. Note that unlike most other id types in the API, revision_guid is a string.\n \nThis method returns a list of revisions.\n" provider: stackexchange method: GET path: "/revisions/{ids}" 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 } }