- route definition
- Url: /api/v1/agent/analytics-filters
- Method: GET
- Request:
AnalyticsFiltersQuery - Response:
AgentAnalyticsFiltersResponse
- request definition
type AnalyticsFiltersQuery struct {
}
- response definition
type AgentAnalyticsFiltersResponse struct {
Code int `json:"code"`
Message string `json:"message"`
Data interface{} `json:"data,omitempty"`
}
- route definition
- Url: /api/v1/agent/meta
- Method: POST
- Request:
AgentMetaReportRequest - Response:
AgentMetaResponse
- request definition
type AgentMetaReportRequest struct {
}
- response definition
type AgentMetaResponse struct {
Code int `json:"code"`
Message string `json:"message"`
Data interface{} `json:"data,omitempty"`
}