Skip to main content
DELETE
/
v1
/
posts
/
{id}
curl -X DELETE https://api.infinipost.co/v1/posts/post_abc123 \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "id": "post_abc123",
  "deleted": true,
  "deletedAt": "2024-04-21T20:20:00Z"
}

Path Parameters

id
string
required
The unique post identifier.

Response

id
string
The deleted post’s identifier.
deleted
boolean
Always true if deletion was successful.
deletedAt
string
ISO 8601 timestamp of deletion.
curl -X DELETE https://api.infinipost.co/v1/posts/post_abc123 \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "id": "post_abc123",
  "deleted": true,
  "deletedAt": "2024-04-21T20:20:00Z"
}
Scheduled posts can be deleted before posting. Posted content will be removed from the platform.