action learnifier_post_orgunits_orgid_projects_projectid_participants_participant { label: "Activate participant" description: "Activates a participant so that it can be used\n" provider: learnifier method: POST path: "/orgunits/{orgid}/projects/{projectid}/participants/${participantId}/activate" encoding: json input: { type: "object" properties: { orgid: { type: "string" } participantId: { type: "string" } projectid: { type: "string" } } required: ["orgid", "participantId", "projectid"] additionalProperties: false } output: { type: "object" additionalProperties: true } }