Social - Community - Remove
/social/community/remove/{id}
Remove (delete) a community.
- The first time this is called, it just removes all users from and suspends the community (currently it must be manually re-activated, but no shares or sources or documents are deleted)
- The second time this is called, the community together with all its shares, sources, and documents are all irrevocably removed from the datastore
Authentication
Required, see Auth - Login
Arguments
id (required)
ID of the community to remove, can also be a regex (community ID - regex) provided that matches only a single community.
Example
http://infinite.ikanow.com/api/community/remove/4e1c5d7c20be6403ca94c3bb
Example Response
First time:
{ response: { action: "Delete community" success: true message: "Community disabled successfully - call delete again to remove for good, including all sources, shares, and documents" time: 12 } }
Second time:
{ response: { action: "Delete community" success: true message: "Community deleted forever." time: 12 } }