34 lines
854 B
JSON
34 lines
854 B
JSON
{
|
|
"fixture_id": "FX_AgentChat.Conversations.ListValid",
|
|
"verifies": "AgentChat.Api.ListConversations",
|
|
"edge": "valid_request",
|
|
"input": {
|
|
"method": "GET",
|
|
"path": "/api/assistant/conversations",
|
|
"query": { "page": 1, "page_size": 20 },
|
|
"headers": { "Authorization": "Bearer eyJhbGciOiJIUzI1NiIs..." }
|
|
},
|
|
"expected": {
|
|
"status": 200,
|
|
"body": {
|
|
"items": [
|
|
{
|
|
"id": "conv-001",
|
|
"title": "Анализ дашбордов",
|
|
"updated_at": "2026-06-08T10:00:00Z",
|
|
"message_count": 12
|
|
},
|
|
{
|
|
"id": "conv-002",
|
|
"title": "Миграция staging→prod",
|
|
"updated_at": "2026-06-07T18:30:00Z",
|
|
"message_count": 5
|
|
}
|
|
],
|
|
"has_next": false,
|
|
"active_total": 5,
|
|
"archived_total": 2
|
|
}
|
|
}
|
|
}
|