Skip to main content
DELETE
/
api
/
v1
/
friends
/
{friend_user_id}
Remove Friend
curl --request DELETE \
  --url https://api.example.com/api/v1/friends/{friend_user_id}

Remove Friend

Remove a friendship connection with another user.

Authentication

Requires a valid user JWT token.
Rate limit: 10 requests/minute.

Path Parameters

friend_user_id
string
required
UUID of the friend to remove.

Example

curl -X DELETE https://api.ama2.me/api/v1/friends/{friend_user_id} \
  -H "Authorization: Bearer YOUR_JWT_TOKEN"
{
  "success": true
}