> ## 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.

# Set an entry's due date

> Set or clear the entry's due date — when the next step on it is due. Send an ISO date
string to set it, or `null` to clear it. The board shows it on the card and turns the card
red once the date has passed; the table can sort by it.



## OpenAPI

````yaml https://api.gleap.io/api-docs.json put /pipeline-entries/{entryId}/due-date
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}/due-date:
    put:
      tags:
        - Pipeline entries
      summary: Set an entry's due date
      description: >-
        Set or clear the entry's due date — when the next step on it is due.
        Send an ISO date

        string to set it, or `null` to clear it. The board shows it on the card
        and turns the card

        red once the date has passed; the table can sort by it.
      operationId: SetDueDate
      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/SetEntryDueDateDTO'
      responses:
        '200':
          description: Ok
          content:
            application/json:
              schema: {}
      security:
        - jwt: []
components:
  schemas:
    SetEntryDueDateDTO:
      properties:
        dueDate:
          type: string
          nullable: true
          description: >-
            When the next step on this entry is due, as an ISO date string.
            `null` (or an

            empty string) clears it.


            Typed as a string rather than a Date so that clearing is
            expressible: TSOA

            would reject `null` for a `Date` field, and the service parses it
            either way.
      type: object
      additionalProperties: false
  securitySchemes:
    jwt:
      type: http
      scheme: bearer
      bearerFormat: JWT

````