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

# Übersetzung löschen

> Übersetzungs-Overlay einer Locale löschen. Idempotent.

**`DELETE`** `https://api-datahub.octoparse.com/v1/data-apps/{app_id}/translations/{locale}`

Authentifizierung: API-Schlüssel erforderlich (`Authorization: Bearer <API Key>`). Nur App-Autor; andere erhalten `404`.

Idempotent: Löschen einer nicht existierenden Locale liefert trotzdem `200` mit `deleted` = `false`. Sofort wirksam auf dieser Replica für Search; andere folgen dem Watermark.

## Anfrage

### Pfadparameter

<ParamField path="app_id" type="string" required>
  App-Referenz.
</ParamField>

<ParamField path="locale" type="string" required>
  Locale-Code.
</ParamField>

### Beispielanfrage

```bash theme={null}
curl -X DELETE \
  -H "Authorization: Bearer $OCTOPARSE_API_KEY" \
  "https://api-datahub.octoparse.com/v1/data-apps/carol/reviews-query/translations/en"
```

## Antwort

### 200 Erfolg

```json theme={null}
{
  "data": {
    "deleted": false
  }
}
```

Payload ist in `data` gewrappt. Felder:

<ResponseField name="deleted" type="boolean" required>
  Ob eine Übersetzung tatsächlich gelöscht wurde.
</ResponseField>

### Fehler

| HTTP | `code`         | `category`  | Beschreibung                             |
| ---- | -------------- | ----------- | ---------------------------------------- |
| 401  | `unauthorized` | `forbidden` | Fehlender oder ungültiger API-Schlüssel. |

Fehlerantworten nutzen `{"error": {code, category, message, retryable}}`. Siehe <a href="/docs/de/datahub/api/reference/introduction#errors">Fehler</a>.

## Client-Bibliotheken

Die Python- und JavaScript-SDKs wrappen diesen Endpoint noch nicht. REST direkt aufrufen.
