Documentation Index
Fetch the complete documentation index at: https://docs.replyke.com/llms.txt
Use this file to discover all available pages before exploring further.
Remove an existing follow relationship between the authenticated user and the specified user.
Path Parameters
ID of the user to unfollow
Response
Returns 204 No Content on success with no response body
Error Responses
Invalid User ID - 400 Bad Request
{
"error": "Invalid userId",
"code": "follow/invalid-user-id"
}
Self-Unfollow Attempt - 400 Bad Request
{
"error": "Cannot unfollow yourself",
"code": "follow/self-follow"
}
Not Following - 404 Not Found
{
"error": "Not currently following this user",
"code": "follow/not-following"
}
Server Error - 500 Internal Server Error
{
"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