Skip to content

Empty Trash

DELETE
/trash/empty
curl --request DELETE \
--url https://markdawn.space/api/v1/trash/empty \
--header 'Authorization: Bearer <token>'

Permanently deletes every Trash item the caller is allowed to delete. This action cannot be undone.

Counts for the permanently deleted folders and pages.

Media typeapplication/json
object
deleted
required
boolean
folders
required
integer
<= 9007199254740991
pages
required
integer
<= 9007199254740991
Example
{
"deleted": true
}

The API token is missing a required scope: pages:write.

Media typeapplication/json

Structured error returned when the request cannot be completed.

object
error
required

Error details for programmatic handling.

object
code
required

Stable error code.

string
message
required

Human-readable explanation.

string
Examplegenerated
{
"error": {
"code": "example",
"message": "example"
}
}