action learnifier_post_orgunits_orgid_projects_projectid_participants { label: "Add participant" description: "Add a user to the project. Participant information is created for the user. In the body object, only one of either email or userid must be specified. The participant needs to be activated before it the user can access it.\n" provider: learnifier method: POST path: "/orgunits/{orgid}/projects/{projectid}/participants" encoding: json input: { type: "object" properties: { orgid: { type: "string" } projectid: { type: "string" } } required: ["orgid", "projectid"] additionalProperties: false } output: { type: "object" additionalProperties: true } }