action osf_wiki_content { label: "Retrieve the Content of a Wiki" description: "Retrieves the plaintext content of a wiki in markdown format.\n#### Returns\nReturns `text/markdown` of the wiki content itself.\nIf the request is unsuccessful, plaintext with the error message will be displayed." provider: osf method: GET path: "/wikis/{wiki_id}/content/" encoding: json input: { type: "object" properties: { wiki_id: { type: "string" } } required: ["wiki_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }