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

# Remove an item from an ASN

> Remove an item from an ASN

### Path parameters

<ParamField path="id" type="string (uuid)" required>
  ASN ID
</ParamField>

<ParamField path="item_id" type="string (uuid)" required>
  Item ID to remove
</ParamField>

### Responses

<ResponseField name="200" type="ApiResponse_Value">
  Item removed from ASN
</ResponseField>

<ResponseField name="404" type="ErrorResponse">
  ASN or item not found
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl --request DELETE \
    --url 'https://api.stateset.com/api/v1/asns/{id}/items/{item_id}' \
    --header 'Authorization: Bearer YOUR_API_KEY'
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "data": null,
    "errors": null,
    "message": null,
    "meta": null,
    "success": true
  }
  ```
</ResponseExample>
