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

# Update a translatable entry



## OpenAPI

````yaml https://api.gleap.io/api-docs.json put /translations/entries/{entryId}
openapi: 3.0.0
info:
  title: gleap-server
  version: 14.0.0
  contact: {}
servers:
  - url: https://api.gleap.io/v3
security: []
paths:
  /translations/entries/{entryId}:
    put:
      tags:
        - Translations
      summary: Update a translatable entry
      operationId: PutEntry
      parameters:
        - in: header
          name: project
          required: true
          schema:
            type: string
        - in: path
          name: entryId
          required: true
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PutTranslationEntryDto'
      responses:
        '200':
          description: Ok
          content:
            application/json:
              schema: {}
      security:
        - jwt: []
components:
  schemas:
    PutTranslationEntryDto:
      properties:
        language:
          type: string
          description: >-
            The language code to set the translation for (e.g., "en", "de",
            "fr").
        fields:
          description: >-
            Key-value pairs of translatable fields.

            Keys depend on the entity type (e.g., "title", "description",
            "content" for articles).

            Values are plain text or HTML strings depending on the field type.
          example:
            title: Getting Started
            description: Learn the basics
            content: <p>Welcome</p>
      required:
        - language
        - fields
      type: object
      additionalProperties: false
  securitySchemes:
    jwt:
      type: http
      scheme: bearer
      bearerFormat: JWT

````