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



## OpenAPI

````yaml /actionkit/openapi.json POST /projects/{project_id}/tools/#SHOPIFY_UPDATE_ORDER
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_ORDER:
    post:
      summary: Update Order
      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_ORDER
                parameters:
                  type: object
                  properties:
                    orderId:
                      type: string
                      description: 'Order ID : The ID of the Order to update.'
                    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
                  required:
                    - orderId
                  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.

````