Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Paste code macro
languagehttp
themeSunburst
POST https://${CloudVendor}.${CountryCode}.machlake.com/v1/lakes/${lake_id}/values/bulk
Content-Type: application/json; charset=utf8
x-api-key: {API Key}
  
{
    "date_format"   : "{date_format}",
    "values"        : [
        ["{tag_name1}", "{time1}", {value1}], 
        ["(tag_name2}", "{time2}", {value2}], 
        ...
    ]
}

Parameters

no parameters

...

Paste code macro
languagehttp
themeSunburst
POST https://aws1.us.machlake.com/v1/lakes/xbacd1234/values/bulk
Content-Type: application/json; charset=utf8
x-api-key: {API Key}
 
{
    "date_format"   : "YYYY-MM-DD HH24:MI:SS",
    "values"        : [
        ["tag_01", "2021-07-06 12:12:25", 1625.0],
        ["tag_02", "2021-07-06 12:12:26", 1627.0],
        ["tag_02", "2021-07-06 12:12:27", 1629.0]
    ]
}

...

Paste code macro
languagejson
themeSunburst
Status 200
 
{
    "statussuccess": true,
    "reason": "append success",
    "data": {
        "fail": 0,
        "success": 3
    }
}

...