action osf_view_only_links_read { label: "Retrieve a view only link" description: "Retrieves details about a specific view only link.\n#### Permissions\nOnly project administrators may retrieve the details of a view only link. Attempting to retrieve a view only link without appropriate permissions will result in a 403 Forbidden response.\n#### Returns\nReturns a JSON object with a `data` key containing the representation of the requested view only link, if the request is successful.\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: "/view_only_links/{link_id}/" encoding: json input: { type: "object" properties: { link_id: { type: "string" } } required: ["link_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }