"feat: implement AccessLog and AppLog APIs with CRUD operations and test cases"

This commit is contained in:
louiscklaw
2025-06-03 15:27:56 +08:00
parent fc6ed533e2
commit 5480b62131
13 changed files with 402 additions and 15 deletions

View File

@@ -0,0 +1,25 @@
###
GET http://localhost:7272/api/AppLog
###
GET http://localhost:7272/api/AppLog?appLogId=51f2f5dd-78be-4069-ba29-09d2a5026191
###
POST http://localhost:7272/api/AppLog?appLogId=1
content-type: application/json
{
"data":{"hello": "test"}
}
###
PUT http://localhost:7272/api/AppLog?appLogId=1
content-type: application/json
{
"data": {"hello": "test"}
}
###
DELETE http://localhost:7272/api/AppLog?appLogId=1