Get list of Tech Support Report generation statuses.
get/techsupportreports
List the progress of Tech Support Report generation, beginning with the most current. If an appliance ID is not provided, Tech Support Reports for all appliances are returned.
SecurityTrend Micro Cloud One API Key
Request
Responses
200
OK
400
Bad Request
401
Unauthorized
404
The appliance is not found.
Response samples
- 200
application/json
{- "totalCount": 0,
- "next": "string",
- "techsupportreports": [
- {
- "ID": 0,
- "deviceId": 0,
- "applianceId": 0,
- "generationStatus": "string",
- "url": "string"
}
]
}
Generate Tech Support Report
post/techsupportreports
Initiate Tech Support Report generation
SecurityTrend Micro Cloud One API Key
Request
Responses
202
Accepted
400
Bad Request
401
Unauthorized
403
Forbidden
404
The appliance is not found.
409
Previous Tech Support Report generation is still in progress or provided URL is not unique
Request samples
- Payload
application/json
{- "applianceId": 0,
- "url": "string"
}
Response samples
- 202
application/json
{- "ID": 0,
- "deviceId": 0,
- "applianceId": 0,
- "generationStatus": "string",
- "url": "string"
}
Get status of Tech Support Report generation.
get/techsupportreports/{id}
Get current progress of Tech Support Report generation.
SecurityTrend Micro Cloud One API Key
Request
Responses
200
OK
400
Bad Request
401
Unauthorized
404
Tech Support Report not found
Response samples
- 200
application/json
{- "ID": 0,
- "deviceId": 0,
- "applianceId": 0,
- "generationStatus": "string",
- "url": "string"
}