Skip to main content
DELETE
/
automation
/
delete-post
Delete Post
curl --request DELETE \
  --url https://public.reap.video/api/v1/automation/delete-post \
  --header 'Authorization: Bearer <token>'
{
  "postId": "<string>",
  "deleted": true
}

Overview

Delete a publisher post. Scheduled posts will have their schedule automatically cancelled. Posts that are currently processing cannot be deleted.

Rate Limiting

This endpoint is rate limited to 10 requests per minute per API key.
Cannot delete posts that are currently processing. Scheduled posts will have their schedule cancelled automatically.

Response

postId
string
ID of the deleted post
deleted
boolean
Always true on success

Example Request

curl -X DELETE "https://public.reap.video/api/v1/automation/delete-post?postId=67b1c2d3e4f5a6b7c8d9e0f1" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json"

Example Response

Authorizations

Authorization
string
header
required

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

Query Parameters

postId
string
required

Unique identifier of the post

Response

200 - application/json

Successful response

postId
string
deleted
boolean
default:true