action smart_me_register_for_realtime_api_post { label: "Creates a new registration for the realtime API. The Realtime API sends you the data of the registred devices as soon as we have them on the cloud. \n More Information about the realtime API: https://www.smart-me.com/Description/api/realtimeapi.aspx" description: "Creates a new registration for the realtime API. The Realtime API sends you the data of the registred devices as soon as we have them on the cloud. More Information about the realtime API: https://www.smart-me.com/Description/api/realtimeapi.aspx" provider: smart_me method: POST path: "/api/RegisterForRealtimeApi" encoding: form input: { 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" } } } output: { type: "object" additionalProperties: true } }