action bunq_list_all_server_public_key_for_installation { description: "Show the ServerPublicKey for this Installation." provider: bunq method: GET path: "/installation/{installationID}/server-public-key" encoding: json input: { type: "object" properties: { installationID: { type: "integer" } } required: ["installationID"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { server_public_key: { type: "string" description: "The server's public key for this Installation." } } } } }