Trying to use the IoT API, I can't get propertiesV2list to return the properties list.
It always returns:
{
"id": "nB0XnalR",
"code": "not_found",
"status": 404,
"detail": "thing not found: sql: no rows in result set"
}
I'm calling this, with no further args:
https://api2.arduino.cc/iot/v2/things/bb4bc077-398b-41d3-af33-4fc87ca9e868/properties
The Thing ID is known-good, and properties do exist, because this (propertiesV2Show) returns the expected result set without error (it's exactly the same as above, but with "/<variable's GUID>" added to the end):
https://api2.arduino.cc/iot/v2/things/bb4bc077-398b-41d3-af33-4fc87ca9e868/properties/cebc15fa-77a0-409c-944b-a4a8d3d20a74
Anyone know what I'm missing here?