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

> Delete one attribute.

Deletes one attribute. It stops running for all agents it was assigned to.

<Note>
  This removes the record itself. Its Data Steps are separate records; delete them with [Delete data step](/en/api-reference/delete-data-step) if you no longer need them.
</Note>

## 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>
  Attribute ID to delete.
</ParamField>

## Response

Returns `{ "success": true }` when the delete succeeds.

## 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 required for this route.
  </Accordion>

  <Accordion title="404 Not Found" icon="ghost">
    No attribute with that ID exists in your workspace.
  </Accordion>
</AccordionGroup>
