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



## OpenAPI

````yaml /actionkit/openapi.json POST /projects/{project_id}/tools/#SHOPIFY_UPDATE_PRODUCT
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/#SHOPIFY_UPDATE_PRODUCT:
    post:
      summary: Update Product
      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: SHOPIFY_UPDATE_PRODUCT
                parameters:
                  type: object
                  properties:
                    productId:
                      type: string
                      description: >-
                        Product ID : The ID of the Product to update. (example:
                        "gid://shopify/Product/913144112")
                    title:
                      type: string
                      description: Title
                    productType:
                      type: string
                      description: Product Type
                    vendor:
                      type: string
                      description: Vendor
                    productDescription:
                      type: string
                      description: 'Product Description : Accepts plain text or HTML.'
                    tags:
                      type: string
                      description: 'Tags : Accepts an array or comma-separated list of tags.'
                    price:
                      type: string
                      description: Price
                    inventoryPolicy:
                      type: string
                      description: Inventory policy
                      enum:
                        - deny
                        - continue
                    imageUrl:
                      type: string
                      description: Image URL
                    isPublished:
                      type: boolean
                      description: Is published
                    publishToPointToSale:
                      type: boolean
                      description: Publish to point of sale
                  required:
                    - productId
                  x-integration: shopify
              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.

````