Path parameters

  • uniqueid string Required

Responses

  • 200 application/json

    Summary retrieved

    Hide response attributes Show response attributes object
    • code integer
    • message string
    • data object
      Hide data attributes Show data attributes object
      • uniqueid string
      • summary string
      • sentiment integer | null
      • state string
      • src string
      • dst string
      • cnam string
      • company string
      • dst_company string
      • dst_cnam string
      • call_timestamp string(date-time) | null
      • created_at string(date-time)
      • updated_at string(date-time)
      • deleted_at string(date-time) | null
  • 401 application/json

    Unauthorized

    Hide response attributes Show response attributes object
    • code integer
    • message string
    • data
    • error string
  • 403 application/json

    Forbidden

    Hide response attributes Show response attributes object
    • code integer
    • message string
    • data
    • error string
  • 400 application/json

    Missing uniqueid

    Hide response attributes Show response attributes object
    • code integer
    • message string
    • data
    • error string
  • 500 application/json

    Failed to fetch summary

    Hide response attributes Show response attributes object
    • code integer
    • message string
    • data
    • error string
  • 404 application/json

    Not found

    Hide response attributes Show response attributes object
    • code integer
    • message string
    • data
    • error string
  • 503 application/json

    Service unavailable

    Hide response attributes Show response attributes object
    • code integer
    • message string
    • data
    • error string
GET /summary/{uniqueid}
curl \
 --request GET 'http://localhost:8080/summary/{uniqueid}' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "code": 42,
  "message": "string",
  "data": {
    "uniqueid": "string",
    "summary": "string",
    "sentiment": 42,
    "state": "string",
    "src": "string",
    "dst": "string",
    "cnam": "string",
    "company": "string",
    "dst_company": "string",
    "dst_cnam": "string",
    "call_timestamp": "2026-05-04T09:42:00Z",
    "created_at": "2026-05-04T09:42:00Z",
    "updated_at": "2026-05-04T09:42:00Z",
    "deleted_at": "2026-05-04T09:42:00Z"
  }
}
Response examples (401)
{
  "code": 42,
  "message": "string",
  "error": "string"
}
Response examples (403)
{
  "code": 42,
  "message": "string",
  "error": "string"
}
Response examples (400)
{
  "code": 42,
  "message": "string",
  "error": "string"
}
Response examples (500)
{
  "code": 42,
  "message": "string",
  "error": "string"
}
Response examples (404)
{
  "code": 42,
  "message": "string",
  "error": "string"
}
Response examples (503)
{
  "code": 42,
  "message": "string",
  "error": "string"
}