> ## 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/#ASANA_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/#ASANA_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: ASANA_UPDATE_TASK
                parameters:
                  type: object
                  properties:
                    taskId:
                      type: string
                      description: 'Task ID : The ID of the Task that will be updated.'
                    completeStatus:
                      type: string
                      description: Completed Status
                      enum:
                        - 'true'
                        - 'false'
                    name:
                      type: string
                      description: 'Name (example: "Task Name")'
                    notes:
                      type: string
                      description: Notes
                    dueOnDate:
                      type: string
                      description: >-
                        Due On : The date on which  this task is due. Cannot be
                        used together with Due At. (example: "YYYY-MM-DD")
                    dueAtDate:
                      type: string
                      description: >-
                        Due At : The date and time (ISO timestamp) at which this
                        task is due . Cannot be used together with Due On.
                        (example: "2019-09-15T02:06:58.147Z")
                    assignee:
                      type: string
                      description: >-
                        Specify the ID of the Asana user this task will be
                        assigned to
                    gid:
                      type: string
                      description: >-
                        External ID : An ID from your application to associate
                        this task with. You can use this ID to sync updates to
                        this task later.
                  required:
                    - taskId
                  x-integration: asana
              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.

````