Rest API Call to Lorawan Network

Hi,
i just discovered this amazing software and i would like to use it to view data coming from a Lorawan network.
Is it possible to configure devices directly from a restfull API call?
Through the call Rest I get a json containing the list of devices.
Sorry for the trivial question but I’m just a beginner. Thanks

{
  "totalCount": "3",
  "result": [
    {
      "devEUI": "xxx",
      "name": "NODE_03",
      "applicationID": "1",
      "description": "NODE_03",
      "deviceProfileID": "07638af8-bce6-4650-9735-80f486c6d884",
      "deviceProfileName": "TERA_DEVICE_PROFILE",
      "deviceStatusBattery": 255,
      "deviceStatusMargin": 256,
      "deviceStatusExternalPowerSource": false,
      "deviceStatusBatteryLevelUnavailable": true,
      "deviceStatusBatteryLevel": 0,
      "lastSeenAt": "2021-09-13T10:52:21.603096Z"
    },
    {
      "devEUI": "xxx",
      "name": "NODE_04",
      "applicationID": "1",
      "description": "NODE_04",
      "deviceProfileID": "07638af8-bce6-4650-9735-80f486c6d884",
      "deviceProfileName": "TERA_DEVICE_PROFILE",
      "deviceStatusBattery": 255,
      "deviceStatusMargin": 256,
      "deviceStatusExternalPowerSource": false,
      "deviceStatusBatteryLevelUnavailable": true,
      "deviceStatusBatteryLevel": 0,
      "lastSeenAt": "2021-09-13T10:47:20.391754Z"
    },
    {
      "devEUI": "xxxx",
      "name": "NODE_05",
      "applicationID": "1",
      "description": "NODE_05",
      "deviceProfileID": "07638af8-bce6-4650-9735-80f486c6d884",
      "deviceProfileName": "TERA_DEVICE_PROFILE",
      "deviceStatusBattery": 255,
      "deviceStatusMargin": 256,
      "deviceStatusExternalPowerSource": false,
      "deviceStatusBatteryLevelUnavailable": true,
      "deviceStatusBatteryLevel": 0,
      "lastSeenAt": "2021-09-13T10:36:21.796420Z"
    }
	]
	 }

You could use a REST sensor :smiley: I have used them before with great success.

And more REST posibilities:

Thanks DurNomis,
Thanks for the info. I did some first tests.
I can’t create dynamic sensors directly from the restfull call.
Second is there a method without configuring each sensor within the config file? Thanks again.

curl -X GET --header 'Accept: application/json' --header 'Grpc-Metadata-Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhdWQiOiJhcyIsImV4cCI6MTYzMjIxOTQ1NiwiaWQiOjIsImlzcyI6ImFzIiwibmJmIjoxNjMyMTMzMDU2LCJzdWIiOiJ1c2VyIiwidXNlcm5hbWUiOiJwaXNvbmlAdGVyYS1ncm91cC5pdCJ9.HlmWKRANnLA2HUbdjN9Y9kmr12ofKH_vq3F5137fqbA' 'http://93.49.98.201:9876/api/devices?limit=1000'

No you would need to make each sensor in configuration.yml. I don’t believe it is possible to dynamically create sensors on the fly unless you are making an integration.