Skip to main content
DELETE
/
:projectId
/
follows
/
:followId
Delete Follow
curl --request DELETE \
  --url https://api.replyke.com/api/v6/:projectId/follows/:followId
{
  "message": "<string>"
}
Remove a specific follow relationship by its ID.

Path Parameters

followId
string
required
ID of the follow relationship to remove

Response

message
string
Success confirmation message

Error Responses

{
  "error": "Invalid followId",
  "code": "follow/invalid-follow-id"
}
{
  "error": "Unauthorized (not your follow relationship)",
  "code": "follow/unauthorized"
}
{
  "error": "Follow relationship not found",
  "code": "follow/not-found"
}
{
  "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
I