Uplink Data Format V2
AlphaX API expects JSON with token, networkId, timestamp, and data array containing channelId and value. Supports advanced data integration and security features.
{
token : string; // conduit token from AlphaX Cloud
networkId : string; // unique identifier on the network
timestamp : integer; // 13 digit UTC timestamp
data : array of objects // array of objects as defined below
}Formatting the Data Array
data: [
{
channelId : integer; // the channel identifier for the value
value : number; // the value of the data (16 digit maximum length)
}
]{
"token": "5b131223c67e7abcd81b0617",
"networkId": "70B3D32111BD648F7",
"timestamp": 1660962091000,
"data": [
{
"channelId": 1,
"value": 462.467835
},
{
"channelId": 255,
"value": 3.976
}
]
}Last updated