action stackexchange_get_users_ids_merges { label: "get_users_ids_merges" description: "Returns a record of merges that have occurred involving the passed account ids.\n \nThis method allows you to take now invalid account ids and find what account they've become, or take currently valid account ids and find which ids were equivalent in the past.\n \nThis is most useful when confirming that an account_id is in fact \"new\" to an application.\n \nAccount merges can happen for a wide range of reasons, applications should not make assumptions that merges have particular causes.\n \nNote that accounts are managed at a network level, users on a site may be merged due to an account level merge but there is no guarantee that a merge has an effect on any particular site.\n \nThis method returns a list of account_merge.\n" provider: stackexchange method: GET path: "/users/{ids}/merges" encoding: json input: { type: "object" properties: { callback: { type: "string" } filter: { type: "string" } ids: { type: "string" } page: { type: "integer" } pagesize: { type: "integer" } } required: ["ids"] additionalProperties: false } output: { type: "object" additionalProperties: true } }