action osf_users_institutions_list { label: "List all institutions" description: "A paginated list of institutions that the user is affiliated with.\n#### Returns\nReturns a JSON object containing `data` and `links` keys.\n\nThe `data` key contains an array of 10 institutions. Each resource in the array is a complete institution object and contains the full representation of the institution, meaning additional requests to a institution's detail view are not necessary.\n\nThe `links` key contains a dictionary of links that can be used for [pagination](#tag/Pagination)." provider: osf method: GET path: "/users/{user_id}/institutions/" encoding: json input: { type: "object" properties: { user_id: { type: "string" } } required: ["user_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }