curl --request POST \
--url https://api.example.com/v1/telemetry/query \
--header 'Content-Type: application/json' \
--data '
{
"spec": {
"runId": "<string>",
"forkPath": "<string>",
"calculations": [
{
"column": "<string>"
}
],
"breakdowns": [
"<string>"
],
"filters": [
{
"column": "<string>",
"value": {
"stringValue": "<string>",
"intValue": "<string>",
"doubleValue": 123,
"boolValue": true
}
}
],
"timeRange": {
"startNs": "<string>",
"endNs": "<string>"
},
"orders": [
{
"column": "<string>",
"descending": true
}
],
"limit": 123
}
}
'