Skip to main content
POST
/
cabinet
/
admin
/
traffic
/
export-csv
Export Traffic Csv
curl --request POST \
  --url http://localhost:8080/cabinet/admin/traffic/export-csv \
  --header 'Content-Type: application/json' \
  --data '
{
  "period": 30,
  "start_date": "<string>",
  "end_date": "<string>",
  "tariffs": "<string>",
  "statuses": "<string>",
  "nodes": "<string>",
  "total_threshold_gb": 1,
  "node_threshold_gb": 1
}
'
{
  "success": true,
  "message": "<string>"
}

Body

application/json
period
integer
default:30
Required range: 1 <= x <= 30
start_date
string | null
end_date
string | null
tariffs
string | null
statuses
string | null
nodes
string | null
total_threshold_gb
number | null

Total GB/day threshold for risk column

Required range: x >= 0
node_threshold_gb
number | null

Per-node GB/day threshold for risk column

Required range: x >= 0

Response

Successful Response

success
boolean
required
message
string
required