> ## 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 Record Tasks



## OpenAPI

````yaml /actionkit/openapi.json POST /projects/{project_id}/tools/#ZENDESK_SELL_UPDATE_RECORD_TASKS
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/#ZENDESK_SELL_UPDATE_RECORD_TASKS:
    post:
      summary: Update Record Tasks
      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: ZENDESK_SELL_UPDATE_RECORD_TASKS
                parameters:
                  type: object
                  properties:
                    recordId:
                      type: string
                      description: 'Record ID : Specify the record ID to update.'
                    content:
                      type: string
                      description: 'Task Content (example: "Contact Tom")'
                    due_date:
                      type: string
                      description: 'Due Date (example: "2014-09-27")'
                    owner_id:
                      type: string
                      description: Task Owner
                    resource_type:
                      type: string
                      description: 'Resource Type (example: "lead")'
                    resource_id:
                      type: string
                      description: 'Resource ID (example: "1")'
                    completed:
                      type: boolean
                      description: Is Completed
                    remind_at:
                      type: string
                      description: 'Remind At (example: "2014-09-29")'
                  required:
                    - recordId
                  x-integration: zendesksell
              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.

````