Report
| API | Report |
| Purpose | |
| API URL | https://<API URL>:<API Port> /api/v1/analysis/report |
| Authentication type | Basic /Bearer |
| Method Input | GET |
Parameters Required in API:
| Column | Column type | Remarks |
| analysisName | string | Mandatory Parameter. Name of the analysis. |
| widgetName | string | Mandatory Parameter. Name of the widget. |
Output:
{
"Count": 1,
"Result": [
{
"TicketDescription": "Ticket Description",
"TotalTickets": 6
},
],
"Status": "Success",
"Message": "Report data fetched successfully."
}
Parameter Returned in API result.
| Column | Column type | Value | Remarks |
| Count | int | Count of ticket count | Total count of ticket |
| Result | JSON string | All data in JSON array | Provide all ticket data with parameters |
| Status | string | Success/Fail | This field provides status |
| Message | string | Success/Fail | This field provides status message |