post_delete_on_platform
Delete a published post from social media platforms while preserving it in the database. Narrow scope to specific profiles or networks for targeted removal.
Instructions
Delete a published post from social media platforms WITHOUT removing it from the database. Async via background job. Optionally narrow scope by post_profile_id (covers entire thread for that profile), profile_id, or network. With no scope, deletes from all published platforms. Supported: Facebook, Threads, X (Twitter), LinkedIn, Pinterest, YouTube. NOT supported: Instagram, TikTok.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| network | No | Network name (e.g. twitter, facebook, threads, linkedin, pinterest, youtube). Deletes all post profiles for this network on the post. | |
| post_id | Yes | Post ID | |
| profile_id | No | ID of a profile. Deletes all post profiles for this profile on the post. | |
| post_profile_id | No | ID of a specific post profile. Resolves to underlying profile and deletes across the full thread (parent + children). |