action obono_get_registrierkasse { label: "getRegistrierkasse" description: "Returns information about a particular `Registrierkasse`." provider: obono method: GET path: "/registrierkassen/{registrierkasseUuid}" encoding: json input: { type: "object" properties: { registrierkasseUuid: { type: "string" } } required: ["registrierkasseUuid"] additionalProperties: false } output: { type: "object" properties: { Benutzerschluessel: { type: "string" format: "base64" description: "The base64 encoded AES 256 key used for encrypting the \"Umsatzzaehler\"." } "Kassen-ID": { type: "string" description: "The (RKSV) \"Kassenidentifikationsnummer\" of this particular `Registrierkasse`." } "Signaturerstellungseinheit-UUID": { type: "string" format: "uuid" description: "The `_uuid` of the paired \"Signaturerstellungseinheit\"." } _href: { type: "string" format: "url" description: "URL of the particular `Registrierkasse` instance." } _uuid: { type: "string" description: "Unique ID of the particular `Registrierkasse` instance." } } } }