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