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 a specific follow relationship by its ID.
Path Parameters
ID of the follow relationship to remove
Response
Success confirmation message
Error Responses
Invalid Follow ID - 400 Bad Request
{
"error": "Invalid followId",
"code": "follow/invalid-follow-id"
}
Unauthorized - 403 Forbidden
{
"error": "Unauthorized (not your follow relationship)",
"code": "follow/unauthorized"
}
Follow Not Found - 404 Not Found
{
"error": "Follow relationship not found",
"code": "follow/not-found"
}
Server Error - 500 Internal Server Error
{
"error": "Internal server error",
"code": "follow/server-error"
}
Notes
- Requires authentication
- User can only remove their own follow relationships
- Returns success message on successful removal
- Use this endpoint when you have the specific follow ID
- Alternative: Use
DELETE api.replyke.com/api/v6/:projectId/users/:userId/follow when you know the user ID
- Rate limiting: 75 requests per 5 minutes