action osf_nodes_citation_list { label: "Retrieve citation details" description: "The citation details for a node, in CSL format.\n#### Returns\nReturns a JSON object with a `data` key that contains the representation of the details necessary for the node citation." provider: osf method: GET path: "/nodes/{node_id}/citation/" encoding: json input: { type: "object" properties: { node_id: { type: "string" } } required: ["node_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }