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

# Delete Attribute

> This endpoint deletes a attribute.

### Body

<ParamField body="id" type="string">
  This is the id of the attribute..
</ParamField>

### Response

<ResponseField name="id" type="string">
  This is the id of the attribute.
</ResponseField>

<ResponseField name="attribute_name" type="string">
  The name of the created attribute.
</ResponseField>

<ResponseField name="attribute_type" type="string">
  The type of the created attribute.
</ResponseField>

<ResponseField name="value" type="string">
  The value assigned to the created attribute.
</ResponseField>

<ResponseField name="max_value" type="number">
  The maximum value for the created attribute, if applicable.
</ResponseField>

<ResponseField name="min_value" type="number">
  The minimum value for the created attribute, if applicable.
</ResponseField>

<ResponseField name="category" type="string">
  The category the created attribute belongs to, if any.
</ResponseField>

<ResponseField name="description" type="string">
  A brief description of the created attribute.
</ResponseField>

<ResponseField name="modifiable" type="boolean">
  Indicates whether the attribute is modifiable.
</ResponseField>

<ResponseField name="impact" type="string">
  The impact or significance of the created attribute, if described.
</ResponseField>

<ResponseField name="message" type="string">
  A confirmation message stating that the attribute has been successfully created.
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl --location --request DELETE 'https://api.stateset.com/v1/attribute' \
  --header 'Content-Type: application/json' \
  --header 'Authorization: Token <token>' \
  --data-raw '{
      "id": "2438cf38-4004-41d3-8c90-131735ff7d00"
  }'
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  {
      "id": "2438cf38-4004-41d3-8c90-131735ff7d00"
  }
  ```
</ResponseExample>
