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

# Update entry values

> Update an entry's field values. Keys are the pipeline's field `fieldId`s (see
GET /pipelines/{pipelineId}/properties). Sent keys are merged into the existing values —
fields you do not send are left untouched — and sending `null` clears a field. Values must be
primitives (string, number, boolean); anything else is dropped.



## OpenAPI

````yaml https://api.gleap.io/api-docs.json put /pipeline-entries/{entryId}/values
openapi: 3.0.0
info:
  title: gleap-server
  version: 14.0.0
  contact: {}
servers:
  - url: https://api.gleap.io/v3
security: []
paths:
  /pipeline-entries/{entryId}/values:
    put:
      tags:
        - Pipeline entries
      summary: Update entry values
      description: >-
        Update an entry's field values. Keys are the pipeline's field `fieldId`s
        (see

        GET /pipelines/{pipelineId}/properties). Sent keys are merged into the
        existing values —

        fields you do not send are left untouched — and sending `null` clears a
        field. Values must be

        primitives (string, number, boolean); anything else is dropped.
      operationId: SetValues
      parameters:
        - in: path
          name: entryId
          required: true
          schema:
            type: string
        - in: header
          name: project
          required: true
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateEntryValuesDTO'
      responses:
        '200':
          description: Ok
          content:
            application/json:
              schema: {}
      security:
        - jwt: []
components:
  schemas:
    UpdateEntryValuesDTO:
      properties:
        values:
          description: >-
            Field values keyed by the pipeline's field `fieldId`s (see

            GET /pipelines/{pipelineId}/properties). Sent keys are merged into
            the existing values;

            `null` clears a field. Primitive values only.
      type: object
      additionalProperties: false
  securitySchemes:
    jwt:
      type: http
      scheme: bearer
      bearerFormat: JWT

````