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"
}