Create a Device
From the console
- In your workspace, open Devices → New (page title Add Device).
- Enter Device key (required unless the selected template defines a serial format so the platform assigns one). Allowed characters: letters, numbers, hyphen, and underscore; this value is used as the MQTT client_id.
- Optionally set Display name — a human-readable label.
- Optionally choose Device model (template) — applies that model’s defaults (capabilities, default device configuration, default MQTT ACLs).
- Optionally add Tags — key-value labels for filtering and organization (for example
location=istanbul). Use + Add Tag for each pair; remove a row with the trash icon if needed. - Set Connection profile to MQTT to generate credentials at creation, or None to register the device without connectivity.
- When MQTT is selected, pick MQTT target (for example Cloud MQTT when no dedicated cluster exists in the workspace).
- Click Create Device

After creation, you are taken to the device detail page where you can copy the MQTT credentials.
Credentials shown once
The MQTT password is shown in full only at device creation. Store it securely. You can always reset credentials to generate a new password.
From the API (provisioning flow)
For automated provisioning — e.g. in a factory or CI pipeline — use:
POST /provision/device
Content-Type: application/json
{
"workspace_id": "<workspace-uuid>",
"template_id": "<template-ulid>",
"device_key": "sensor-042"
}
template_id and device_key are optional depending on whether you use a template with auto serial format.
The response includes mqtt_username, mqtt_password, and the mqtt_host for the workspace's primary region.
See POST /provision/device for the full schema.