buddypress_delete_friendship
Remove a BuddyPress friendship connection between users by providing the specific friendship ID to manage community relationships.
Instructions
Delete a friendship
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Friendship ID |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "Friendship ID",
"required": true,
"type": "number"
}
},
"required": [
"id"
],
"type": "object"
}