action learnifier_delete_orgunits_orgid_projects_projectid { label: "Deletes the project" description: "Deletes the project. The project can only be deleted if the project do not contain any participants.\n" provider: learnifier method: DELETE path: "/orgunits/{orgid}/projects/{projectid}" encoding: json input: { type: "object" properties: { orgid: { type: "string" } projectid: { type: "string" } } required: ["orgid", "projectid"] additionalProperties: false } output: { type: "object" additionalProperties: true } }