Skip to main content
DELETE
/
journals
/
editor
/
delete
/
{journal_id}
Delete Journal
curl --request DELETE \
  --url https://api.example.com/journals/editor/delete/{journal_id} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "<string>",
  "timestamp": "<string>",
  "deleted_journal_data": {
    "id": "<string>",
    "type": "<string>",
    "title": "<string>",
    "content": "<string>",
    "comments": [
      "<unknown>"
    ],
    "created_at": "<string>",
    "is_trashed": true,
    "updated_at": "<string>",
    "font_family": "<string>",
    "publish_status": "<string>",
    "publish_subdomain": "<string>",
    "color": "<string>",
    "trashed_at": "<string>",
    "parent_item": "<string>",
    "order_indexes": "<unknown>",
    "pending_invites": "<unknown>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

journal_id
string
required

Response

Successful Response

Response model for journal deletion.

success
boolean
required
message
string | null
timestamp
string
deleted_journal_data
DeletedJournalData · object

Detailed data about the deleted journal.