ParrotPosterParrotPoster
API
  • WordPress plugin
Site
  • English
  • Русский
API
  • WordPress plugin
Site
  • English
  • Русский
  • Introduction
  • Quick start
  • API methods

    • Authentication
    • Social accounts
    • Posts

      • Main use cases
      • Post object shape
      • Get post
      • Create post
      • Update post
      • Delete post

Delete post

This mutation deletes a post. If it was already published, the service also removes it from the social networks where possible.

Important

Deletion is permanent — the post cannot be restored.

Example request

mutation {
  deletePost(id: "post_id_12345") {
    id
  }
}

id parameter

Unique ID of the post to delete.

deletePost response

Returns the deleted post object. Request the fields you need. See Post.

Edit on GitHub
Last updated: 4/24/26, 6:09 PM
Prev
Update post