Skip to main content
DELETE
/
:projectId
/
api
/
v7
/
follows
/
:followId
Delete Follow
curl --request DELETE \
  --url https://api.replyke.com/api/v6/:projectId/api/v7/follows/:followId

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.

Removes a follow relationship by the follow record ID. Only the follower (the user who created the follow) can delete it. Use Unfollow User instead if you only have the target user’s ID.

Path Parameters

followId
string
required
The ID (UUID) of the follow record to delete.

Response

On success, returns HTTP 204 with no body.

Error Responses

{
  "error": "Follow relationship does not exist.",
  "code": "follow/not-found"
}
{
  "error": "You do not have permission to delete this follow relationship.",
  "code": "follow/forbidden"
}

See Also