Skip to main content

Creating registries and devices

This page explains how to create, edit, and delete device registries and devices within them.

A device is a "Thing" in "Internet of Things": a processing unit that is capable of connecting to the internet (directly or indirectly) and exchanging data with the cloud. A device registry is a container of devices with shared properties.

If you haven't already, complete the Getting Started steps before proceeding.

Device Registry

Creating a device registry

To use OmniCore, you must create at least one device registry. You can create a registry using console or using the OmniCore API. Create New Registry

  1. Go to the Registries page in console.

  2. At the top of the page, click Create a registry.

  3. Enter a Registry ID. For information on registry naming and size requirements, see Permitted characters and size requirements.

  4. Select a telemetry topic from the drop down. (These are topics configured in the sink section.)

  5. Click Create to continue.

Creating Device

Creating or editing a device

You can create a device or edit an existing one using console, the API. Make sure you've created a registry before completing the steps in this section.

Using Console

  1. Go to the Registries page in console.
  2. Click the ID of the registry for the device.
  3. In the registry menu on the left, click Devices.
  4. Click Create a TCP device. To edit an existing device, click its ID on the Devices page, and then click Edit device at the top of the page.
  5. Choose the type of device from the given list of devices.
  6. Enter the IMEI number of the device. (This field can't be edited later.)
  7. Click Create to create the device.

Using APIs

Use the following methods to create or edit devices:

Device create method to add devices to registries
Device patch method to edit existing devices

When creating a device, public keys are specified in the credentials field of the Device resource in the OmniCore API. You can also add or modify this field when you update the device resource. If one or more registry-level certificates are present when adding a new device credential (either via device creation or via modifications), the public key credential must be signed by one of the registry-level certificates. See DeviceCredential in the Device resource for more information.

The following sample shows how to create a device with RSA credentials: Create New Device

Create a Device

// Creates a device in a registry given RSA X.509 credentials.
package main

import (
"bytes"
"fmt"
"io"
"log"
"net/http"
"os"
)

var BASEURL = "<BaseUrl>"
var subscription = "<subscriptionId>"
var registryId = "<registryId>"
var token = "Bearer <token>"
var url = fmt.Sprintf("%s/subscriptions/%s/registries/%s/devices", BASEURL, subscription, registryId)

func main() {

var jsonData = []byte(` {"id": "deviceId","credentials": [{"publicKey": {"format": "RSA_X509_PEM", "key": "<PublicKeyBytes>"}}]}`)

req, _ := http.NewRequest("POST", url, bytes.NewBuffer(jsonData))
req.Header = http.Header{
"Content-Type": {"application/json"},
"Authorization": {token},
}
client := &http.Client{}
res, e := client.Do(req)
if e != nil {
log.Fatal(e)
}

defer res.Body.Close()

fmt.Println("response Status:", res.Status)
fmt.Println("Created Device")
// Print the body to the stdout
io.Copy(os.Stdout, res.Body)
}


The following sample shows how to create a device with Elliptic Curve (EC) credentials:

Create a Device

// Creates a device in a registry given RSA X.509 credentials.
package main

import (
"bytes"
"fmt"
"io"
"log"
"net/http"
"os"
)

var BASEURL = "<BaseUrl>"
var subscription = "<subscriptionId>"
var registryId = "<registryId>"
var token = "Bearer <token>"
var url = fmt.Sprintf("%s/subscriptions/%s/registries/%s/devices", BASEURL, subscription, registryId)

func main() {

var jsonData = []byte(` {"id": "deviceId","credentials": [{"publicKey": {"format": "ES256_PEM", "key": "<PublicKeyBytes>"}}]}`)

req, _ := http.NewRequest("POST", url, bytes.NewBuffer(jsonData))
req.Header = http.Header{
"Content-Type": {"application/json"},
"Authorization": {token},
}
client := &http.Client{}
res, e := client.Do(req)
if e != nil {
log.Fatal(e)
}

defer res.Body.Close()

fmt.Println("response Status:", res.Status)
fmt.Println("Created Device")
// Print the body to the stdout
io.Copy(os.Stdout, res.Body)
}


The following sample shows how to patch a device with RSA credentials: Modify A Device

Patch a Device

// patchDeviceRSA patches a device to use RSA256 X.509 credentials.

package main

import (
"bytes"
"fmt"
"io"
"log"
"net/http"
"os"
)

var BASEURL = "<BaseUrl>"
var subscription = "<subscriptionId>"
var registryId="<registryId>"
var deviceId="<deviceId>"
var token = "Bearer <token>"
var url = fmt.Sprintf("%s/subscriptions/%s/registries/%s/devices/%s?updateMask=mqtt_config", BASEURL, subscription,registryId,deviceId)

func main() {

var jsonData = []byte(`{"mqttConfig":{"mqttEnabledState": "MQTT_ENABLED"}}`)

req, _ := http.NewRequest("PATCH", url, bytes.NewBuffer(jsonData))
req.Header = http.Header{
"Content-Type": {"application/json"},
"Authorization": {token},
}
client := &http.Client{}
res, e := client.Do(req)
if e != nil {
log.Fatal(e)
}

defer res.Body.Close()

fmt.Println("response Status:", res.Status)
fmt.Println("Modified device")
// Print the body to the stdout
io.Copy(os.Stdout, res.Body)

}

Credential and certificate expiration dates

When you create a device and add a public key, you can set an expiration date for the key. If the key was generated with a self-signed X.509 certificate, then the certificate itself also has an expiration date. However, these two expiration dates are separate.

If either the key expires or the self-signed X.509 certificate on the key expires, the device will not be able to connect to OmniCore. Additionally, if you try to create or update a device with an expired X.509 certificate, OmniCore returns an error.

Getting device details

You can get details about one or more devices using console, the API.

Using Console

  1. Go to the Registries page in console.

  2. Click the ID of the registry for the device.

  3. In the menu on the left, click Devices.

  4. Click the ID of the device to go to the Device details page. This page summarizes recent device activity, including the last time a message was published and the time of the most recent error. This page also shows the device numeric ID.

  5. Click the Configuration & state history tab to see recent configuration versions and update times for the device.

Using APIs

Use the following methods to get details about devices:

Device list method to list the devices in a registry
Device get method to get details about a device
Device states list method to list the last few versions of the device state in descending order

The following sample shows how to list the devices in a registry: List All Devices

List Devices in a Registry

// listDevices gets the identifiers of devices for a specific registry.
package main

import (
"fmt"
"io/ioutil"
"log"
"net/http"
)
var BASEURL = "<BASEURL>"
var subscription = "<subscriptionId>"
var registryId = "registryId"
var token = "Bearer <Token>"

var url = fmt.Sprintf("%s/subscriptions/%s/registries/%s/devices", BASEURL, subscription, registryId)

func main() {
client := http.Client{}
req, err := http.NewRequest("GET", url, nil)
if err != nil {
//Handle Error
}

req.Header = http.Header{
"Authorization": {token},
}

res, err := client.Do(req)
//We Read the response body on the line below.
body, err := ioutil.ReadAll(res.Body)
if err != nil {
log.Fatalln(err)
}
//Convert the body to type string
sb := string(body)
log.Printf(sb)
}


The following sample shows how to retrieve a device and its metadata from a device registry: Get a Device

Get a Device

// getDevice retrieves a specific device and prints its details.
package main


import (
"fmt"
"io/ioutil"
"log"
"net/http"
)
var BASEURL = "<BASEURL>"
var subscription = "<subscriptionId>"
var registryId = "registryId"
var deviceId = "<deviceId>"
var token = "Bearer <Token>"

var url = fmt.Sprintf("%s/subscriptions/%s/registries/%s/devices/%s", BASEURL, subscription, registryId,deviceId)

func main() {
client := http.Client{}
req, err := http.NewRequest("GET", url, nil)
if err != nil {
//Handle Error
}

req.Header = http.Header{
"Authorization": {token},
}

res, err := client.Do(req)
//We Read the response body on the line below.
body, err := ioutil.ReadAll(res.Body)
if err != nil {
log.Fatalln(err)
}
//Convert the body to type string
sb := string(body)
log.Printf(sb)
}


The following sample shows how to retrieve device state from a device registry: Get Device State

Get Device States

// getDeviceStates retrieves and lists device states.
package main


import (
"fmt"
"io/ioutil"
"log"
"net/http"
)
var BASEURL = "<BASEURL>"
var subscription = "<subscriptionId>"
var registryId = "<registryId>"
var deviceId = "<deviceId>"
var token = "Bearer <Token>"

var url = fmt.Sprintf("%s/subscriptions/%s/registries/%s/devices/%s/states", BASEURL, subscription, registryId,deviceId)

func main() {

client := http.Client{}
req, err := http.NewRequest("GET", url, nil)
if err != nil {
//Handle Error
}

req.Header = http.Header{
"Authorization": {token},
}

res, err := client.Do(req)
//We Read the response body on the line below.
body, err := ioutil.ReadAll(res.Body)
if err != nil {
log.Fatalln(err)
}
//Convert the body to type string
sb := string(body)
log.Printf(sb)
}

See the Device Management Samples for more code samples.

Deleting devices and registries

You can delete devices and registries using console, the API. To delete a registry, first delete all the devices within it.

You can delete one or more devices from the registry's list of devices.

To delete devices:

1. Go to the Registries page in console.

2. Click the ID of the registry for the device.

3. In the menu on the left, click Devices.

4. Select each device you want to delete, then click Delete.

5. Confirm you want to delete the selected devices, then click Delete.

Using APIs

Use the following methods to delete devices and registries:

  1. Device delete method to delete a device.
  2. Registries delete method to delete a registry

The following sample shows how to delete a device from a registry: Delete a Device

Delete a Device

// deleteDevice deletes a device from a registry.
package main


import (
"fmt"
"io/ioutil"
"net/http"
)

var BASEURL = "<BASEURL>"
var subscription = "<subscriptionId>"
var registryId = "registryId"
var deviceId = "deviceId"
var token = "<Bearer Token>"

var url = fmt.Sprintf("%s/subscriptions/%s/registries/%s/devices/%s", BASEURL, subscription, registryId, deviceId)

func main() {
client := http.Client{}
req, err := http.NewRequest("DELETE", url, nil)
if err != nil {
//Handle Error
}

req.Header = http.Header{
"Authorization": {"Bearer Token"},
}

res, err := client.Do(req)
//We Read the response body on the line below.

respBody, err := ioutil.ReadAll(res.Body)
if err != nil {
fmt.Println(err)
return
}

// Display Results
fmt.Println("response Status : ", res.Status)
fmt.Println("response Headers : ", res.Header)
fmt.Println("response Body : ", string(respBody))
}

The following sample shows how to delete a registry: Delete a Registry

Delete a Registry
// deleteRegistry deletes a device registry if it is empty.
package main


import (
"fmt"
"io/ioutil"
"net/http"
)

var BASEURL = "<BASEURL>"
var subscription = "<subscriptionId>"
var registryId = "registryId"
var token = "<Bearer Token>"


var url = fmt.Sprintf("%s/subscriptions/%s/registries/%s", BASEURL, subscription, registryId)

func main() {
client := http.Client{}
req, err := http.NewRequest("DELETE", url, nil)
if err != nil {
//Handle Error
}

req.Header = http.Header{
"Authorization": {"Bearer Token"},
}

res, err := client.Do(req)
//We Read the response body on the line below.

respBody, err := ioutil.ReadAll(res.Body)
if err != nil {
fmt.Println(err)
return
}

// Display Results
fmt.Println("response Status : ", res.Status)
fmt.Println("response Headers : ", res.Header)
fmt.Println("response Body : ", string(respBody))
}