Skip to content

Deletes a post from the community.

Endpoint

  • Method: DELETE

  • Path: /feeds/{feed_id}

  • Edition: Core

  • Controller: FeedsController@deleteFeed

  • Route source: fluent-community/app/Http/Routes/api.php:61

  • Controller source: fluent-community/app/Http/Controllers/FeedsController.php

  • The post author can always delete; anyone else needs the delete_any_feed permission globally or in the space.

  • Destructive: the post row is removed and the fluent_community/feed/deleted action runs, which is what cleans up its comments, reactions and activity entries.

Live sample

The request and response below were recorded against a running FluentCommunity install and then anonymised — member names, emails, avatars and post content are fictional, and long collections are trimmed to a few entries.

DELETE Delete Feed

DELETE
/feeds/{feed_id}

Deletes a post from the community.

Controller: FeedsController@deleteFeed
Route source: fluent-community/app/Http/Routes/api.php:61

Authorizations

ApplicationPasswords

WordPress Application Passwords — use Basic auth with username:application_password.

Type
API Key (header: Authorization)

Parameters

Path Parameters

feed_id*

Feed ID extracted from the URL path.

Type
integer
Required

Responses

Successful response

application/json
JSON
{
  
"message": "string"
}

Playground

Authorization
Variables
Key
Value

Samples

Powered by VitePress OpenAPI

FluentCommunity developer documentation