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

# Bulk Delete Requests by Filters

> Delete all logistics requests matching filter criteria with concurrency guard

# Bulk Delete Requests by Filters

Delete all logistics requests matching the given filter criteria. Uses `filter_hash` for optimistic concurrency — ensuring you delete exactly what the user saw in the list.

## Request

### Headers

<ParamField header="x-api-key" type="string" required>
  Your API key for authentication

  **Example:** `sk_live_1234567890abcdef`
</ParamField>

<ParamField header="x-organization-id" type="string" required>
  Your organization UUID

  **Example:** `a8315ef3-dd50-43f8-b7ce-d839e68d51fa`
</ParamField>

### Query Parameters

At least one filter parameter is required.

<ParamField query="search" type="string">
  Search across movement ID and stretch ID
</ParamField>

<ParamField query="clients[]" type="string[]">
  Filter by client name(s)
</ParamField>

<ParamField query="trip_date_from" type="string">
  Filter by trip date on or after (YYYY-MM-DD)
</ParamField>

<ParamField query="trip_date_until" type="string">
  Filter by trip date on or before (YYYY-MM-DD)
</ParamField>

<ParamField query="vehicle_type[]" type="string[]">
  Filter by vehicle type(s)
</ParamField>

<ParamField query="trip_status" type="string">
  Filter by trip status
</ParamField>

<ParamField query="uploaded_by[]" type="string[]">
  Filter by uploader user UUID(s)
</ParamField>

<ParamField query="file_id[]" type="string[]">
  Filter by file UUID(s)
</ParamField>

<ParamField query="project_id" type="string">
  Filter by project UUID
</ParamField>

### Body Parameters

<ParamField body="filter_hash" type="string" required>
  Hash from the list endpoint response. Must match the current filter set.
</ParamField>

## Example

<CodeGroup>
  ```bash cURL theme={"theme":{"light":"github-light","dark":"github-dark"}}
  # Step 1: Get filter_hash from list
  RESPONSE=$(curl -s "https://api.dcycle.io/v1/logistics/requests?clients[]=ACME&trip_status=error" \
    -H "x-api-key: ${DCYCLE_API_KEY}" \
    -H "x-organization-id: ${DCYCLE_ORG_ID}")

  FILTER_HASH=$(echo $RESPONSE | jq -r '.filter_hash')

  # Step 2: Bulk delete with the same filters
  curl -X POST "https://api.dcycle.io/v1/logistics/requests/bulk-delete-by-filters?clients[]=ACME&trip_status=error" \
    -H "x-api-key: ${DCYCLE_API_KEY}" \
    -H "x-organization-id: ${DCYCLE_ORG_ID}" \
    -H "Content-Type: application/json" \
    -d "{\"filter_hash\": \"${FILTER_HASH}\"}"
  ```

  ```python Python theme={"theme":{"light":"github-light","dark":"github-dark"}}
  import requests
  import os

  headers = {
      "x-api-key": os.getenv("DCYCLE_API_KEY"),
      "x-organization-id": os.getenv("DCYCLE_ORG_ID"),
  }

  filters = {"clients[]": "ACME", "trip_status": "error"}

  # Step 1: Get filter_hash
  list_resp = requests.get("https://api.dcycle.io/v1/logistics/requests", headers=headers, params=filters)
  filter_hash = list_resp.json()["filter_hash"]

  # Step 2: Bulk delete
  delete_resp = requests.post(
      "https://api.dcycle.io/v1/logistics/requests/bulk-delete-by-filters",
      headers={**headers, "Content-Type": "application/json"},
      params=filters,
      json={"filter_hash": filter_hash},
  )

  print(f"Deleted: {len(delete_resp.json()['deleted'])}")
  ```

  ```javascript JavaScript theme={"theme":{"light":"github-light","dark":"github-dark"}}
  const axios = require('axios');

  const headers = {
    'x-api-key': process.env.DCYCLE_API_KEY,
    'x-organization-id': process.env.DCYCLE_ORG_ID,
  };

  const filters = { 'clients[]': 'ACME', trip_status: 'error' };

  // Step 1: Get filter_hash
  const listResp = await axios.get('https://api.dcycle.io/v1/logistics/requests', { headers, params: filters });

  // Step 2: Bulk delete
  const deleteResp = await axios.post(
    'https://api.dcycle.io/v1/logistics/requests/bulk-delete-by-filters',
    { filter_hash: listResp.data.filter_hash },
    { headers: { ...headers, 'Content-Type': 'application/json' }, params: filters },
  );

  console.log(`Deleted: ${deleteResp.data.deleted.length}`);
  ```
</CodeGroup>

### Successful Response

```json theme={"theme":{"light":"github-light","dark":"github-dark"}}
{
  "deleted": [
    "f1e2d3c4-b5a6-7890-1234-567890abcdef",
    "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
  ],
  "failed": []
}
```

<ResponseField name="deleted" type="string[]">
  UUIDs of deleted requests.
</ResponseField>

<ResponseField name="failed" type="object[]">
  Failed deletions with reason.
</ResponseField>

## Common Errors

### 401 Unauthorized

**Cause:** Missing or invalid API key

```json theme={"theme":{"light":"github-light","dark":"github-dark"}}
{"detail": "Invalid API key for organization", "code": "INVALID_API_KEY"}
```

### 403 Forbidden

**Cause:** The authenticated user is not a member of the organization

```json theme={"theme":{"light":"github-light","dark":"github-dark"}}
{"detail": "Logged User is not Member of Organization", "code": "LOGGED_USER_NOT_MEMBER"}
```

### 409 Conflict

**Cause:** Filter hash mismatch. The filters have changed since the list was loaded. Please refresh and try again.

```json theme={"theme":{"light":"github-light","dark":"github-dark"}}
{ "detail": "Filter hash mismatch. The filters have changed since the list was loaded. Please refresh and try again." }
```

### 422 Unprocessable Entity

**Cause:** At least one filter parameter is required for bulk delete by filters.

```json theme={"theme":{"light":"github-light","dark":"github-dark"}}
{ "detail": "At least one filter parameter is required for bulk delete by filters." }
```

## Related Endpoints

<CardGroup cols={2}>
  <Card title="Batch Delete Requests" icon="trash" href="/api-reference/logistics/batch-delete-requests">
    Delete specific requests by ID
  </Card>

  <Card title="List Requests" icon="list" href="/api-reference/logistics/get-requests">
    Browse logistics requests
  </Card>
</CardGroup>
