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



## OpenAPI

````yaml /actionkit/openapi.json POST /projects/{project_id}/tools/#SHORTCUT_UPDATE_PROJECT
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/#SHORTCUT_UPDATE_PROJECT:
    post:
      summary: Update Project
      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: SHORTCUT_UPDATE_PROJECT
                parameters:
                  type: object
                  properties:
                    project_id:
                      type: string
                      description: >-
                        Project ID : The unique ID of the Project. (example:
                        "12")
                    name:
                      type: string
                      description: 'Name : The name of the Project. (example: "Find Pluton")'
                    team_id:
                      type: string
                      description: >-
                        Team ID : The ID of the team the project belongs to.
                        (example: "106")
                    description:
                      type: string
                      description: >-
                        Description : The Project description. (example: "Eat
                        Devil Fruit")
                    follower_ids:
                      type: string
                      description: >-
                        Follower IDs : An array of UUIDs for any members you
                        want to add as Owners on this new Epic. (example:
                        "["12345678-9012-3456-7890-123456789012"]")
                    projectAdditionalFields:
                      type: object
                      description: >-
                        Additional Fields : Specify additional fields to include
                        on this request as JSON. For example, you may associate
                        an abbreviation or start time here. See the docs
                        (https://developer.shortcut.com/api/rest/v3#Create-Project)
                        for available fields. (example: "{
                          color: "#6515dd"
                        }")
                      properties: {}
                  required:
                    - project_id
                  x-integration: shortcut
              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.

````