> ## Documentation Index
> Fetch the complete documentation index at: https://docs.usefini.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete article

> Delete an article.

Use this route to remove a live article or draft article from your workspace.

## Headers

<ParamField header="Authorization" type="string" required>
  Bearer token containing your Fini workspace API key. Format: `Bearer fini_...` The key needs `write` scope.
</ParamField>

## Path parameters

<ParamField path="id" type="string" required>
  Article ID to delete.
</ParamField>

## Response

Returns the deleted article object. See [Manage knowledge](/en/api-reference/manage-knowledge) for the shared article fields.

## Errors

<AccordionGroup>
  <Accordion title="401 Unauthorized" icon="lock">
    The API key is missing, malformed, revoked, or invalid.
  </Accordion>

  <Accordion title="403 Forbidden" icon="shield-halved">
    The API key does not include the `write` scope.
  </Accordion>

  <Accordion title="404 Not Found" icon="ghost">
    The article does not exist in the workspace.
  </Accordion>
</AccordionGroup>
