Skip to main content

Quickstart

Connect your first device in under 5 minutes.

1. Create your account

Go to console.iotmer.com and click Sign Up.

Email verification

After registration, check your inbox for a verification email. The console is fully functional only after verifying your email.

Registration screen

2. Create a workspace

A workspace is the top-level container for your devices, MQTT credentials, billing, and team members.

First-time sign-in: the console runs a short onboarding wizard (workspace name → endpoint → credentials → done). Example workspace name: Acme IoT.

Later, or from the menu: open your avatar → New Workspace, pick a name and primary region, then create.

Create workspace

3. Enable MQTT (Cloud Shared)

Navigate to MQTT → Cloud MQTT in your workspace and activate your preferred region. This provisions a shared MQTT broker endpoint for your workspace immediately — no infrastructure setup required.

Templates define the device model: model key, capabilities / capability definitions (JSON), default configuration, optional auto device key (serial pattern), and default MQTT ACLs. Optionally start from an IOTMER platform example in the first dropdown to pre-fill the form and inspect a reference. Custom metadata for devices is configured separately under Devices → Custom Fields.

  1. Go to Devices → Device templates → New device template
  2. Fill the form (add at least one default MQTT ACL route before saving)
  3. Save

5. Create your first device

  1. Go to Devices → New
  2. Select a template (or create a blank device)
  3. Click Create — the device gets its MQTT credentials automatically

Device created

6. Connect via MQTT

Use the credentials shown on the device page to connect:

mosquitto_pub \
-h mqtt.iotmer.cloud \
-p 8883 \
-u <device-username> \
-P <device-password> \
--cafile ca.crt \
-t "workspace_slug/devices/<device-id>/telemetry" \
-m '{"temp": 22.5}'

Next steps