action osf_get_draft_registrations_draft_id_contributors_user_id { label: "Retreive a Contributor from a Draft Registration" description: "Retrieves the details of a given contributor.\n\nContributors are users who can view or edit to the Draft Registrations.\n\nContributors are categorized as either \"bibliographic\" or \"non-bibliographic\". From a permissions standpoint, both are the same, but bibliographic contributors are included in citations and are listed on the project overview page on the OSF, while non-bibliographic contributors are not." provider: osf method: GET path: "/draft_registrations/{draft_id}/contributors/{user_id}/" encoding: json input: { type: "object" properties: { draft_id: { type: "string" } user_id: { type: "string" } } required: ["draft_id", "user_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }