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



## OpenAPI

````yaml /actionkit/openapi.json POST /projects/{project_id}/tools/#SHOPIFY_CREATE_ORDER_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_ORDER_GRAPHQL:
    post:
      summary: Create Order 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_ORDER_GRAPHQL
                parameters:
                  type: object
                  properties:
                    email:
                      type: string
                      description: Customer email
                    lineItems:
                      type: object
                      description: >-
                        Line items : View Shopify’s docs
                        (https://shopify.dev/docs/themes/liquid/reference/objects/line_item#line_item-properties)
                        for a list of line item properties. (example: "[
                            {
                            "title": "Big Brown Bear Boots",
                            "price": 74.99,
                            "quantity": 3,
                            "variant_id": 447654529
                            }
                          ]")
                      properties: {}
                    sendReceipt:
                      type: boolean
                      description: Send receipt
                    fulfillmentStatus:
                      type: string
                      description: Fulfillment status
                      enum:
                        - fulfilled
                        - 'null'
                        - partial
                        - restocked
                    financialStatus:
                      type: string
                      description: Financial status
                      enum:
                        - pending
                        - authorized
                        - partially_paid
                        - paid
                        - partially_refunded
                        - refunded
                        - voided
                    inventoryBehaviour:
                      type: string
                      description: Inventory behavior
                      enum:
                        - bypass
                        - decrement_ignoring_policy
                        - decrement_obeying_policy
                    note:
                      type: string
                      description: Note
                    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: "{

                        "name": "test-name",

                        "phone": "+122134567890"

                        }")
                      properties: {}
                  required:
                    - email
                    - lineItems
                  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.

````