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

# Remove Import

> Remove a previously imported order book

Removes a cross-instance order book import. After removal, your instance's users can no longer place orders on the remote book through your instance.

## Authentication

Requires an instance API key with the `trading` service enabled.

## Path Parameters

<ParamField path="importId" type="string" required>
  The import identifier. Max 100 characters.
</ParamField>

<RequestExample>
  ```bash theme={null}
  curl -X DELETE "https://api.trusset.org/orderbooks/stocks/api/imports/imp_001" \
    -H "x-api-key: trusset_{instanceRef}_{secret}"
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "success": true,
    "data": {
      "importId": "imp_001",
      "status": "REMOVED"
    },
    "metadata": {
      "requestId": "550e8400-e29b-41d4-a716-446655440000",
      "timestamp": "2025-01-15T10:35:00.000Z",
      "instanceId": "inst_abc"
    }
  }
  ```
</ResponseExample>

## Error Codes

| Code               | Status | Description                  |
| ------------------ | ------ | ---------------------------- |
| `IMPORT_NOT_FOUND` | 404    | No import found with this ID |
