curl --request POST \
--url https://api.example.com/v1/telemetry/batch \
--header 'Content-Type: application/json' \
--data '
{
"packets": [
{
"droneId": "<string>",
"timestamp": 123,
"latitude": 123,
"longitude": 123,
"altitude": 123,
"battery": 123,
"speed": 123,
"heading": 123,
"status": "<string>",
"metadata": {}
}
],
"windowMs": 123
}
'