action snyk_list_all_organizations_in_a_group { label: "List all organizations in a group" description: "" provider: snyk method: GET path: "/group/{groupId}/orgs" encoding: json input: { type: "object" properties: { groupId: { type: "string" } name: { type: "string" } page: { type: "number" } perPage: { type: "number" } } required: ["groupId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }