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

# Update Task



## OpenAPI

````yaml /actionkit/openapi.json POST /projects/{project_id}/tools/#CLICKUP_UPDATE_TASK
openapi: 3.0.0
info:
  title: ActionKit Tools API
  version: 1.0.0
servers:
  - url: https://actionkit.useparagon.com
    description: US Cloud
security: []
paths:
  /projects/{project_id}/tools/#CLICKUP_UPDATE_TASK:
    post:
      summary: Update Task
      parameters:
        - name: project_id
          in: path
          required: true
          schema:
            type: string
            description: >-
              Your Paragon Project ID. You can copy your Project ID from your
              dashboard URL or by clicking Copy Project ID under the Environment
              switcher.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                tool:
                  type: string
                  default: CLICKUP_UPDATE_TASK
                parameters:
                  type: object
                  properties:
                    taskId:
                      type: string
                      description: 'Task ID : The ID of the task to update.'
                    listId:
                      type: string
                      description: Specify the list ID to perform the operation on
                    name:
                      type: string
                      description: Name
                    description:
                      type: string
                      description: Description
                    status:
                      type: string
                      description: Specify the status for the task
                    assignees:
                      type: string
                      description: >-
                        Specify the members (or an array of member IDs) to be
                        assigned to this task
                    dueDate:
                      type: string
                      description: 'Due Date : Specify a date for this task to be due on.'
                    priority:
                      type: string
                      description: 'Priority : The priority of the task.'
                      enum:
                        - '1'
                        - '2'
                        - '3'
                        - '4'
                    tags:
                      type: string
                      description: >-
                        Tags : Comma-separated list of tag names to add to this
                        task. (example: "bug, feature, urgent")
                    additionalFields:
                      type: object
                      description: >-
                        Additional Fields : Specify any other fields that should
                        be included on this task in JSON format. Please refer to
                        the ClickUp API documentation
                        (https://developer.clickup.com/reference/updatetask) for
                        the available fields. (example: "{
                          "notify_all": true,
                          "points": 5,
                          "markdown_content": "Task description with **markdown**",
                          "parent": null,
                          "start_date": 1768379560648,
                          "start_date_time": true,
                          "due_date_time": true,
                          "links_to": null
                        }")
                      properties: {}
                  required:
                    - taskId
                    - listId
                  x-integration: clickup
              required:
                - tool
                - parameters
      responses:
        '200':
          description: Success
      security:
        - BearerAuth: []
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: >-
        Your [Paragon User
        Token](/getting-started/installing-the-connect-sdk#setup) (JWT), which
        you can generate using your project's signing keys.

````