Skip to main content
DELETE
/
social
/
post
/
{post_id}
Delete Social Post
curl --request DELETE \
  --url https://api.example.com/social/post/{post_id}
Deletes a social post by post ID.

Request

curl -X DELETE "https://api.mosaic.so/social/post/[post_id]" \
  -H "Authorization: Bearer mk_your_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "mark_manual_deleted": true
  }'

Body Parameters

FieldTypeRequiredDescription
mark_manual_deletedbooleanNoOptional provider hint for manually-deleted state tracking.

Response

{
  "post_id": "1c08fd57-f0b0-4d10-bf7a-1df2e03c1a96",
  "status": "success"
}

Ayrshare References