Перейти к содержимому

Get Summary

GET
/v1/objects/{object_id}/summary
curl --request GET \
--url https://api.cloud.agentums.ru/v1/objects/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/summary \
--header 'Authorization: Bearer <token>'

Содержание объекта из готовых метаданных. pending/processing — статус, не 500.

object_id
required
Object Id
string format: uuid
x-hidden-token
Any of:
string

Successful Response

Media typeapplication/json
SummaryOut

Карточка содержания объекта (Ф9, B1): метаданные из Enrichment без LLM-затрат.

status отдаётся всегда; при pending/processing/failed поля обогащения пусты (объект ещё не обработан) — клиент показывает статус, а не падает.

object
description
Description
string
""
doc_type
Doc Type
string
default: other
entities
Entities
object
key
additional properties
any
filename
Filename
string
""
keywords
Keywords
Array<string>
language
Language
string
""
object_id
required
Object Id
string format: uuid
status
required
Status
string
summary
Summary
string
""
title
Title
string
""
Example
{
"description": "",
"doc_type": "other",
"filename": "",
"language": "",
"summary": "",
"title": ""
}

Validation Error

Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationError
object
ctx
Context
object
input
Input
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Examplegenerated
{
"detail": [
{
"ctx": {},
"input": "example",
"loc": [
"example"
],
"msg": "example",
"type": "example"
}
]
}