action osf_nodes_view_only_links_read { label: "Retrieve a view only link" description: "Retrieves the details of a view only link on a node.\n#### Returns\nReturns a JSON object with a `data` key containing the representation of the requested view only link, if the request is 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.\n#### Permissions\n\nView only links on a node, public or private, are readable and writeable only by users that are administrators on the node." provider: osf method: GET path: "/nodes/{node_id}/view_only_links/{link_id}/" encoding: json input: { type: "object" properties: { link_id: { type: "string" } node_id: { type: "string" } } required: ["link_id", "node_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }