action clever_cloud_get_network_group { label: "Get Network Group" description: "Gets details of a Network Group." provider: clever_cloud method: GET path: "/v4/networkgroups/organisations/{ownerId}/networkgroups/{networkGroupId}" encoding: json input: { type: "object" properties: { networkGroupId: { type: "string" } ownerId: { type: "string" } } required: ["networkGroupId", "ownerId"] additionalProperties: false } output: { type: "object" } }