Список активных транзакций текущего API key.
Base URL: https://<host>/ (пример: http://localhost:5000). Соглашения, обзор Public API, Swagger UI.
Response 200:
{
"success": true,
"transactions": [...],
"count": 0
}
| Заголовок | Обяз. | Описание |
|---|---|---|
X-API-Key | да | Ключ с scope db:query |
{
"success": true,
"data": {
"transactions": [
{ "id": "tx-uuid-here", "status": "open" }
]
}
}
{
"success": false,
"error": {
"code": "unauthorized",
"message": "Invalid API key"
}
}
curl http://localhost:5000/api/v1/db/transaction/list \
-H "X-API-Key: YOUR_API_KEY"
См. также: Tx flow.