# Create Report This API will return a report ID. Use this ID to call the "Get Report Status" API to check the report generation status and retrieve the results. Learn more. Endpoint: POST /report/v0/reports Version: 1.0.0 Security: bearerAuth ## Request fields (application/json): - `report_type` (string, required) Enum: "device_apps", "device" - `start_time` (string) Start time of the report in UTC format. Example: "2024-08-28T00:00:00Z". Must be a date and time later than July 1st, 2024. Example: "2024-08-28T00:00:00Z" - `end_time` (string) End time of the report in UTC format. Example: "2024-08-29T00:00:00Z". Must be a date and time later than July 1st, 2024 and equal to the start_time. Example: "2024-08-28T00:00:00Z" - `is_download` (boolean) - `filters` (object,null) ## Response 200 fields (application/json): - `content` (object) - `content.id` (string) - `content.status` (string) Enum: "PENDING", "RUNNING", "SUCCEEDED", "FAILED", "CANCELED", "CLOSED" ## Response 400 fields (application/json): - `status` (integer) - `error` (string) - `message` (string) ## Response 401 fields (application/json): - `status` (integer) - `error` (string) - `message` (string) ## Response 500 fields (application/json): - `status` (integer) - `error` (string) - `message` (string)