Last updated
This endpoint allows you to programmatically initiate a replay for a specific SQL monitor.
POST https://{telmai_endpoint}/api/data/{tenant}/assets/{asset_id}/batch_data/replay
The request supports the following parameters in the JSON body:
monitor_id
Integer
Unique ID of the SQL monitor to replay.
5225
depth
Integer
Number of historical scans to replay (Range: 1–20).
5
Example Request:
{
"monitor_id": 5225,
"depth": 5
}Last updated