The SolSQL API exposes read-only endpoints for audit logs and comment statistics. You can use these endpoints to monitor data-change activity across all tables, track user registration events, and analyze comment volume over time.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/jparra-amell/api_solsql/llms.txt
Use this file to discover all available pages before exploring further.
All endpoints on this page are read-only. They do not support POST, PUT, or DELETE operations.
Audit logs
GET /api/vw_logs
Returns the full audit log. Each entry records a data-change event on a specific table.Unique identifier for the log entry.
The name of the database table where the action occurred.
The type of operation that was performed (e.g.
INSERT, UPDATE, DELETE).A human-readable summary of the action that was logged.
The date and time when the action occurred, in ISO 8601 format.
Registration logs
GET /api/vw_logs_register
Returns aggregated registration activity. Each entry groups registration events by date and action type.The date for which this registration summary applies.
The type of registration action (e.g.
INSERT).The number of registration events of this action type on the given date.
Comment statistics
GET /api/vw_totalcomments_date
Returns the total number of comments grouped by date. Use this endpoint to visualize comment activity over time.The date for which the comment count is aggregated.
The number of comments posted on that date.
GET /api/vw_totalcomments_users
Returns the total number of comments grouped by user. Use this endpoint to identify the most active commenters.The name of the user who posted the comments.
The total number of comments posted by this user.
Error codes
| Status | Meaning |
|---|---|
| 200 | Request succeeded. |
| 500 | A server or database error occurred. The response body contains message and error fields with details. |