action osf_institutions_detail { label: "Retrieve an institution" description: "Retrieves the details of an institution\n#### Returns\nReturns a JSON object with a `data` key containing the representation of the requested institution, if the request was successful.\n\nIf the request is unsuccessful, an `errors` key containing information about the failure will be returned. Refer to the [list of error codes](#tag/Errors-and-Error-Codes) to understand why this request may have failed." provider: osf method: GET path: "/institutions/{institution_id}/" encoding: json input: { type: "object" properties: { institution_id: { type: "string" } } required: ["institution_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }