action snyk_activate { label: "Activate" description: "Activating a project will:\n\n- Add a repository webhook for supported integrations.\n\n- Enable pull request tests for new vulnerabilities.\n\n- Open Fix pull request for newly disclosed vulnerabilities.\n\n- Enable recurring tests, sending email alerts about newly disclosed vulnerabilities." provider: snyk method: POST path: "/org/{orgId}/project/{projectId}/activate" encoding: json input: { type: "object" properties: { orgId: { type: "string" } projectId: { type: "string" } } required: ["orgId", "projectId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }