action stackexchange_get_users_ids_associated { label: "get_users_ids_associated" description: "Returns all of a user's associated accounts, given their account_ids in {ids}.\n \n{ids} can contain up to 100 semicolon delimited ids, to find ids programatically look for account_id on user objects.\n \nThis method returns a list of network_users.\n" provider: stackexchange method: GET path: "/users/{ids}/associated" 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 } }