Documentation Index Fetch the complete documentation index at: https://docs.replyke.com/llms.txt
Use this file to discover all available pages before exploring further.
Deletes an existing entity within the project. Only the entity author or a master user can perform this operation. Deletion also deducts reputation from the original author.
Path Parameters
The ID of the entity to delete
Response
Returns 204 No Content on successful deletion
Error Responses
Invalid ID - 400 Bad Request
{
"error" : "Invalid entityId." ,
"code" : "entity/invalid-id"
}
Unauthorized - 403 Forbidden
{
"error" : "Not authorized to delete this entity." ,
"code" : "entity/not-authorized"
}
Not Found - 404 Not Found
{
"error" : "Entity not found." ,
"code" : "entity/not-found"
}
Delete Failed - 404 Not Found
{
"error" : "Entity not found or already deleted." ,
"code" : "entity/delete-failed"
}
Server Error - 500 Internal Server Error
{
"error" : "Failed to delete the entity." ,
"code" : "entity/server-error" ,
"details" : "[error message]"
}
Notes
Only the original author or a master user can delete an entity.
Deleting an entity deducts reputation points from the author if applicable.
If the entity does not exist or was already deleted, the operation is a no-op.