lora.actility.device_profile.list

The lora.actility.device_profile.list command is used to acquire a list of device profiles from Actility for the specified provider.

TR50 Request

{
  "cmd": {
    "command": "lora.actility.device_profile.list",
    "params": {
      "providerId": "50000000000000000000000a"
    }
  }
}

Request Parameters

Name Type Required Description
providerId String Yes The ID of the LoRa provider.

If the command is sent successfully a success message and the property values found are returned. Otherwise, an error and error message will be returned.

TR50 Response

{
  "1": {
    "success": true,
    "params": {
      "result": [
        {
          "id": "ABCD\/LoRaMaticA.1_JM",
          "name":"ABCD LoraMatic 1 - class A",
          "typeMAC":"LoRaMac" 							
        },
        ...
      ]
    }
  }
}

Response Parameters

Name Type Description
result Array The array of device profiles.

Result Object

Name Type Description
id String The Actility identifier.
name String The name of the connectivity plan.
typeMAC String The MAC type.