Skip to main content
POST
/
posts
/
delete
Delete posts
curl --request POST \
  --url https://api.woopsocial.com/v1/posts/delete \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '[
  "<string>"
]'
{
  "results": [
    {
      "id": "<string>",
      "status": "DELETED",
      "error": {
        "code": "POST_NOT_FOUND",
        "message": "<string>"
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Body

application/json
Minimum array length: 1

Response

200 - application/json

Batched post deletion results.

results
object[]
required

Results in the same order as the request items.