I have a device with an ID of: 60aaef71077e903f4a354448
If I make an API call using the following JSON:
{
“method”: “hub.items.list”,
“id”: “1624127755725”, <------- What do I supply here?
“params”: {
“deviceIds”: [
“60aaef71077e903f4a354448”
]
}
}
I get no results back:
{“api”:“1.0”,“error”:null,“id”:“1624127755725”,“result”:{“items”:[]}}
However, in the API tool, it works.
The only difference I see is that in the API tool, the “id” field (ex. “id”: “1624127755725”) is populated with a different ID each call.
What am I supposed to supply for that field in my code?
Thanks.