ApiResponseDTOCategorizationStatsDTO
Standard API response wrapper for all endpoints.
successboolean
Indicates whether the operation was successful
Example:
truedata object
Transaction categorization statistics including totals and batch configuration
totalTransactionsinteger<int64>
Total number of transactions
Example:
1500categorizedTransactionsinteger<int64>
Number of categorized transactions
Example:
1200uncategorizedTransactionsinteger<int64>
Number of uncategorized transactions
Example:
300categorizedPercentagenumber<double>
Percentage of categorized transactions
Example:
80batchSizeinteger<int32>
Current configured batch size for categorization
Example:
100messagestring
Human-readable message describing the result
Example:
Operation completed successfullyApiResponseDTOCategorizationStatsDTO
{
"success": true,
"data": {
"totalTransactions": 1500,
"categorizedTransactions": 1200,
"uncategorizedTransactions": 300,
"categorizedPercentage": 80,
"batchSize": 100
},
"message": "Operation completed successfully"
}