lora.actility.connectivity_plan.list

The lora.actility.connectivity_plan.list command is used to acquire a list of connectivity plans from Actility for the specified provider.

TR50 Request

{
  "cmd": {
    "command": "lora.actility.connectivity_plan.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": "acme\/acme-cp-nb-initech",
          "name":"acme-cp-nb-initech",
          "ref":"12345",
          "communicationType":"COMMTYPE",
          "usedConnections":4  							
        },
        ...
      ]
    }
  }
}

Response Parameters

Name Type Description
result Array The array of records.

Result Object

Name Type Description
id String The Actility identifier.
name String The name of the connectivity plan.
ref String The Actility reference number.
communicationType String The communication type.
grantedConnections Integer The number of connections granted to account.
usedConnections Integer The number of connections used by the account.