Unique
| API | Unique |
| Purpose | |
| API URL | https://<API URL>:<API Port> /api/v1/analysis/unique |
| Authentication type | Basic /Bearer |
| Method Input | GET |
Parameters Required in API:
| Column | Column type | Remarks |
| analysisName | string | Mandatory Parameter. Name of the analysis session. Internally prefixed with 'ProcessUnique' to query specific stored procedure. |
Output:
{
"Count": 1,
"Result": [
{
"CanonicalSummary": "Canonical Summary",
"ActualSummary": "Actual Summary",
"Number": "12342",
"ConfidenceScore": "0.77",
"TicketId": "01",
"BucketId": "01"
},
],
"Status": "Success",
"Message": "Analysis found."
}
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 |