Skip to main content
DELETE
/
api
/
calendar
/
media
Delete uploaded social media
curl --request DELETE \
  --url https://app.puffle.ai/api/calendar/media \
  --header 'Authorization: Bearer <token>'
{
  "success": true
}

Overview

Returns { success: true } unconditionally (for authenticated callers). Late’s temporary media storage auto-expires — there is nothing to delete on the server. The endpoint exists so UI code can call a symmetric verb when the user removes an attachment from a draft.

AI agent notes

Agents generally don’t need to call this — simply omit the media item from the next updateSocialPost call. Included for completeness with the REST-style CRUD on /api/calendar/media.

Authorizations

Authorization
string
header
required

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

Response

Always returns success. No backing delete occurs.

success
enum<boolean>
required
Available options:
true