action osf_nodes_draft_registrations_read { label: "Retrieve a Draft Registration" description: "Retrieve the details of a given draft registration.\nDraft Registrations contain Registration questions that will become part of the Registration. A Registration is a frozen version of the project that can never be deleted, but can be withdrawn and have it's metadata edited.\n\nYour original project remains editable but will now have the draft registration linked to it.\n#### Permissions\nOnly project administrators may view draft registrations.\n#### Returns\nReturns a JSON object with a `data` key containing the representation of the requested draft registration, 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}/draft_registrations/{draft_id}/" encoding: json input: { type: "object" properties: { draft_id: { type: "string" } node_id: { type: "string" } } required: ["draft_id", "node_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }