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

# Create Task



## OpenAPI

````yaml /actionkit/openapi.json POST /projects/{project_id}/tools/#TODOIST_CREATE_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/#TODOIST_CREATE_TASK:
    post:
      summary: Create 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: TODOIST_CREATE_TASK
                parameters:
                  type: object
                  properties:
                    content:
                      type: string
                      description: >-
                        Content : Task content. This value may contain
                        markdown-formatted text and hyperlinks.Details on
                        markdown support can be found in the Text Formatting
                        article
                        (https://todoist.com/help/articles/how-to-format-text)
                        in the Help Center. (example: "Buy Sword")
                    description:
                      type: string
                      description: >-
                        Description : A description for the task. (example:
                        "Pirate King")
                    project_id:
                      type: string
                      description: >-
                        Project ID : Task project ID. If not set, task is put to
                        user's Inbox.
                    section_id:
                      type: string
                      description: 'Section ID : ID of section to put task into.'
                    parent_id:
                      type: string
                      description: 'Parent ID : Parent task ID. (example: "1064843106")'
                    due_string:
                      type: string
                      description: >-
                        Due String : Human defined
                        (https://todoist.com/help/articles/due-dates-and-times)
                        task due date (ex.: 'next Monday', 'Tomorrow'). Value is
                        set using local (not UTC) time. (example: "tomorrow at
                        12:00")
                    due_date:
                      type: string
                      description: >-
                        Due Date : Specific date in YYYY-MM-DD format relative
                        to user’s timezone.
                    priority:
                      type: string
                      description: >-
                        Priority : Task priority from 1 (normal) to 4 (urgent).
                        (example: "4")
                    taskAdditionalFields:
                      type: object
                      description: >-
                        Additional Fields : Specify additional fields to include
                        on this request as JSON. For example, you may associate
                        an assignee or description here. See the docs
                        (https://developer.todoist.com/api/v1/) for available
                        fields. (example: "{
                          assignee_id: "a70bdf0f"
                        }")
                      properties: {}
                  required:
                    - content
                  x-integration: todoist
              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.

````