action smart_me_register_for_realtime_api_get { label: "Gets all registrations for the Realtime API." description: "Gets all registrations for the Realtime API." provider: smart_me method: GET path: "/api/RegisterForRealtimeApi" encoding: json output: { type: "array" items: { type: "object" description: "Container class for the register realtime API API" properties: { ApiUrl: { type: "string" description: "The URL of your endpoint. To this endpoint all the values are send to." } BasicAuthPassword: { type: "string" description: "The Password (basic auth) of your endpoint. Leave empty of none." } BasicAuthUsername: { type: "string" description: "The Username (basic auth) of your endpoint. Leave empty of none." } Id: { type: "string" description: "The ID of the registration" } MeterId: { type: "string" description: "The ID of the Meter. Just used if the RegistrationType is \"SingleMeterRegistration\"." } RegistrationType: { type: "string" description: "The Type of this registration (per meter, per user, ...)" enum: ["Disabled", "SingleMeterRegistration", "UserRegistration"] } SerialNumber: { type: "string" description: "The serial number of the Meter. Just used if the RegistrationType is \"SingleMeterRegistration\" and the MeterId is null. \n Example: 1 SME 01 63000000 or 6300000" } } } } }