-
Notifications
You must be signed in to change notification settings - Fork 0
User Log Management API
M♢NTΛSIM edited this page Aug 17, 2024
·
1 revision
-
GET
/account
- Summary: Retrieves the activity log of the user associated with account-related changes.
- Security: Bearer Authentication
-
Responses:
-
200 OK:
- Description: Account activities retrieved successfully.
-
Content:
-
Content-Type:
application/json
-
Schema:
{ "type": "object", "properties": { "activities": { "type": "array", "items": { "type": "object", "properties": { "category": { "type": "string" }, "description": { "type": "string" }, "date": { "type": "string", "format": "date-time" } } } } } }
-
Content-Type:
- 401 Unauthorized: Unauthorized. Please log in first.
- 500 Internal Server Error: Internal server error.
-
200 OK:
-
Tags:
- User Log Management
-
All Other Methods on
/account
- Summary: Handles unsupported methods for the account log route.
-
Responses:
- 405 Method Not Allowed: Method not supported.
-
Tags:
- User Log Management
-
GET
/security
- Summary: Retrieves the security log of the user, including all security-related activities.
- Security: Bearer Authentication
-
Responses:
-
200 OK:
- Description: Security activities retrieved successfully.
-
Content:
-
Content-Type:
application/json
-
Schema:
{ "type": "object", "properties": { "activities": { "type": "array", "items": { "type": "object", "properties": { "category": { "type": "string" }, "description": { "type": "string" }, "date": { "type": "string", "format": "date-time" } } } } } }
-
Content-Type:
- 401 Unauthorized: Unauthorized. Please log in first.
- 500 Internal Server Error: Internal server error.
-
200 OK:
-
Tags:
- User Log Management
-
All Other Methods on
/security
- Summary: Handles unsupported methods for the security log route.
-
Responses:
- 405 Method Not Allowed: Method not supported.
-
Tags:
- User Log Management