action learnifier_delete_orgunits_orgid_projects_projectid_participants_participan { label: "Deletes a participant" description: "Deletes a participant. The user itself will still remain but any state related to the project will be deleted.\nIt might not be possible due to constraints from the products in the project to delete the participant. However\nthis can only be determined at the time of the delete. If a delete fails the participant will have their inError\nflag set.\n" provider: learnifier method: DELETE path: "/orgunits/{orgid}/projects/{projectid}/participants/${participantId}" 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 } }