List summary/transcription status for provided unique IDs

POST /summary/statuses
application/json

Body Required

  • uniqueids array[string] Required

Responses

  • 200 application/json

    Summary status list

    Hide response attributes Show response attributes object
    • code integer
    • message string
    • data array[object]
      One of:
  • 400 application/json

    Invalid request

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

    Unauthorized

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

    Failed to list summaries

    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
POST /summary/statuses
curl \
 --request POST 'http://localhost:8080/summary/statuses' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Content-Type: application/json" \
 --data '{"uniqueids":["string"]}'
Request examples
{
  "uniqueids": [
    "string"
  ]
}
Response examples (200)
{
  "code": 42,
  "message": "string",
  "data": [
    {
      "uniqueid": "string",
      "state": "string",
      "has_transcription": true,
      "has_summary": true,
      "updated_at": "2026-05-04T09:42:00Z"
    }
  ]
}
Response examples (400)
{
  "code": 42,
  "message": "string",
  "error": "string"
}
Response examples (401)
{
  "code": 42,
  "message": "string",
  "error": "string"
}
Response examples (500)
{
  "code": 42,
  "message": "string",
  "error": "string"
}
Response examples (503)
{
  "code": 42,
  "message": "string",
  "error": "string"
}