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