Skip to main content
DELETE
/
:projectId
/
users
/
:userId
/
follow
Delete Follow
curl --request DELETE \
  --url https://api.replyke.com/api/v6/:projectId/users/:userId/follow
Remove an existing follow relationship between the authenticated user and the specified user.

Path Parameters

userId
string
required
ID of the user to unfollow

Response

Returns 204 No Content on success with no response body

Error Responses

{
  "error": "Invalid userId",
  "code": "follow/invalid-user-id"
}
{
  "error": "Cannot unfollow yourself",
  "code": "follow/self-follow"
}
{
  "error": "Not currently following this user",
  "code": "follow/not-following"
}
{
  "error": "Internal server error",
  "code": "follow/server-error"
}

Notes

  • Removes the follow relationship between the authenticated user and the specified user
  • Returns 204 No Content on successful unfollow with no response body
  • Cannot unfollow yourself
  • Returns 404 if no follow relationship exists
  • Rate limiting: 75 requests per 5 minutes
I