action snyk_create_a_new_organization { label: "Create a new organization" description: "" provider: snyk method: POST path: "/org" encoding: json input: { type: "object" required: ["name"] properties: { groupId: { type: "string" description: "The group ID. The `API_KEY` must have access to this group." } name: { type: "string" description: "The name of the new organization" } sourceOrgId: { type: "string" description: "The id of an organization to copy settings from.\n\nIf provided, this organization must be associated with the same group.\n\nThe items that will be copied are: \nSource control integrations (GitHub, GitLab, BitBucket)\n\\+ Container registries integrations (ACR, Docker Hub, ECR, GCR)\n\\+ Container orchestrators integrations (Kubernetes)\n\\+ PaaS and Serverless Integrations (Heroku, AWS Lambda)\n\\+ Notification integrations (Slack, Jira)\n\\+ Policies\n\\+ Ignore settings\n\\+ Language settings\n\\+ Infrastructure as Code settings\n\\+ Snyk Code settings\n\nThe following will not be copied across:\nService accounts\n\\+ Members\n\\+ Projects\n\\+ Notification preferences" } } } output: { type: "object" additionalProperties: true } }