Skip to main content
DELETE
/
api
/
calendar
/
posts
/
{postId}
/
permanent-delete
Permanently delete an archived social post
curl --request DELETE \
  --url https://app.puffle.ai/api/calendar/posts/{postId}/permanent-delete \
  --header 'Authorization: Bearer <token>'
{
  "success": true
}

Overview

Hard-delete a post row from the database. Irreversible. The post must be archived first — call deleteSocialPost before this. If a late_post_id is still set, the server also deletes from Late; a Late-side failure is logged but does not block the local delete.

AI agent notes

Irreversible. Always confirm with the human before calling. There is no undo.Prerequisite — the post must be archived (archived_at != null). Call deleteSocialPost first to archive, then this to permanently remove.

Authorizations

Authorization
string
header
required

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

Path Parameters

postId
string<uuid>
required

Post UUID. Must be archived (archived_at != null).

Pattern: ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$

Response

Row deleted.

success
enum<boolean>
required
Available options:
true