action clever_cloud_get_network_group_wire_guard_configuration { label: "Get WireGuard® configuration" description: "Gets the current WireGuard® tunnel configuration file for a Network Group peer." provider: clever_cloud method: GET path: "/v4/networkgroups/organisations/{ownerId}/networkgroups/{networkGroupId}/peers/{peerId}/wireguard/configuration" encoding: json input: { type: "object" properties: { networkGroupId: { type: "string" } ownerId: { type: "string" } peerId: { type: "string" } } required: ["networkGroupId", "ownerId", "peerId"] additionalProperties: false } output: { type: "object" } }