Skip to main content
DELETE
/
:projectId
/
api
/
v7
/
users
/
:userId
/
follow
Unfollow User
curl --request DELETE \
  --url https://api.replyke.com/api/v6/:projectId/api/v7/users/:userId/follow
Removes the follow relationship between the authenticated user and the specified user. This is a convenience alternative to Delete Follow — it looks up the follow record by user ID rather than requiring the follow ID.

Path Parameters

userId
string
required
The Replyke user ID (UUID) of the user to unfollow.

Response

On success, returns HTTP 204 with no body.

Error Responses

{
  "error": "Follow relationship does not exist.",
  "code": "follow/not-found"
}

See Also