action osf_nodes_providers_read { label: "Retrieve a storage provider" description: "Retrieves the details of a storage provider enabled on this node.\n#### Returns\nReturns a JSON object with a `data` key containing the representation of the requested file object, 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." provider: osf method: GET path: "/nodes/{node_id}/files/providers/{provider}/" encoding: json input: { type: "object" properties: { node_id: { type: "string" } provider: { type: "string" } } required: ["node_id", "provider"] additionalProperties: false } output: { type: "object" additionalProperties: true } }