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



## OpenAPI

````yaml /actionkit/openapi.json POST /projects/{project_id}/tools/#SHOPIFY_CREATE_PRODUCT_GRAPHQL
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_CREATE_PRODUCT_GRAPHQL:
    post:
      summary: Create Product GRAPHQL
      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_CREATE_PRODUCT_GRAPHQL
                parameters:
                  type: object
                  properties:
                    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.'
                    media:
                      type: object
                      description: >-
                        Media : Specify list of new media to be added to the
                        product. (example: "[
                          {
                            alt: "Gray helmet for bikers",
                            mediaContentType: "IMAGE",
                            originalSource: "https://cdn.shopify.com/shopifycloud/brochure/assets/sell/image/image-@artdirection-large-1ba8d5de56c361cec6bc487b747c8774b9ec8203f392a99f53c028df8d0fb3fc.png"
                          }
                        ]")
                      properties: {}
                    additionalFields:
                      type: object
                      description: >-
                        Additional Fields : Specify additional fields to include
                        on this request as JSON. See the docs
                        (https://shopify.dev/docs/api/admin-graphql/2026-04/mutations/productCreate?language=cURL#top)
                        for available fields. (example: "{
                          status: "ACTIVE",
                          requiresSellingPlan: false,
                          giftCard: false
                        }")
                      properties: {}
                  required:
                    - title
                    - productType
                    - vendor
                  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.

````