Hi,
Yes, you can certainly do this and would suggest performing a POST to Tandem's generic webhook. In Tandem if you go to connections > click the 3 vertical ellipsis > webhook integration > and within that configuration if you click the hyperlinked "Here", we have example code on how to achieve this. Ultimately you'll have to write a program that creates a payload and convert your timestamps to unix like:
[
{
temperatureValue: 25,
pressureValue: 100,
id: 'AQAAAJVLslwb80o0jqA8wgUzxPYAAAAA',
ts: 1713902785
},
{
temperatureValue: 23,
pressureValue: 95,
id: 'AQAAAJVLslwb90o0jqA9wgUzxQYAAAAA',
ts: 1713902785
}
]
You would then POST this data to the webhook given to you by Tandem.
This can also be done in Tandem Connect if you regularly schedule these files to go to an sftp server for example or maybe the data is accessible via REST API.
Any questions, please let us know. Thanks!
Derek