> ## 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.

# Delete Follow

> Remove a follow relationship by its follow ID

Removes a follow relationship by the follow record ID. Only the follower (the user who created the follow) can delete it. Use [Unfollow User](/api-reference/users/follows/unfollow-user) instead if you only have the target user's ID.

## Path Parameters

<ParamField path="followId" type="string" required>
  The ID (UUID) of the follow record to delete.
</ParamField>

## Response

On success, returns HTTP `204` with no body.

## Error Responses

<AccordionGroup>
  <Accordion title="Follow Not Found — 404">
    ```json theme={null}
    {
      "error": "Follow relationship does not exist.",
      "code": "follow/not-found"
    }
    ```
  </Accordion>

  <Accordion title="Forbidden — 403">
    ```json theme={null}
    {
      "error": "You do not have permission to delete this follow relationship.",
      "code": "follow/forbidden"
    }
    ```
  </Accordion>
</AccordionGroup>

## See Also

* [`useUnfollowByFollowId` hook](/hooks/follows/use-unfollow-by-follow-id)
* [Unfollow User (by user ID)](/api-reference/users/follows/unfollow-user)
