PaperTrail-Persistence
  1. Audit Log Registration
PaperTrail-Persistence
  • Message Log Registration
    • Update an existing guild registration
      PUT
    • Register a guild for message logging
      POST
    • Fetch message log registration by guild ID
      GET
    • Delete a guild's message log registration
      DELETE
  • Audit Log Registration
    • Update an existing audit log registration
      PUT
    • Register a new guild for audit logging
      POST
    • Get audit log registration for a guild
      GET
    • Delete an audit log registration
      DELETE
  • Message Log Content
    • Update a logged message
      PUT
    • Save a new message
      POST
    • Fetch a logged message by ID
      GET
    • Delete a logged message
      DELETE
  • Schemas
    • Schemas
      • MessageLogRegistration
      • ErrorResponse
      • AuditLogRegistration
      • MessageLogContent
  1. Audit Log Registration

Delete an audit log registration

DELETE
/api/v1/log/audit/{guildId}
Unregisters a guild from audit logging. If the guild does not exist, a GuildNotFoundException is thrown.

Request

Path Params

Responses

🟢204No Content
Guild successfully unregistered
This response does not have a body.
🟠404Record Not Found
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request DELETE '/api/v1/log/audit/'
Response Response Example
{
    "status": "HTTP Error Code",
    "error": "ExampleException",
    "message": "ExampleMessage",
    "timeStamp": "2025-08-23T14:32:00Z",
    "path": "/api/v1/example/"
}
Modified at 2025-08-27 03:26:30
Previous
Get audit log registration for a guild
Next
Update a logged message
Built with