action snyk_update_organization_settings { label: "Update organization settings" description: "Settings that are not provided will not be modified." provider: snyk method: PUT path: "/org/{orgId}/settings" encoding: json input: { type: "object" properties: { orgId: { type: "string" } requestAccess: { type: "object" description: "Can only be updated if `API_KEY` has edit access to request access settings." required: ["enabled"] properties: { enabled: { type: "boolean" description: "Whether requesting access to the organization is enabled." } } } } required: ["orgId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }