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



## OpenAPI

````yaml /actionkit/openapi.json POST /projects/{project_id}/tools/#SHOPIFY_UPDATE_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_UPDATE_ORDER_GRAPHQL:
    post:
      summary: Update 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_UPDATE_ORDER_GRAPHQL
                parameters:
                  type: object
                  properties:
                    orderId:
                      type: string
                      description: >-
                        Order ID : The ID of the Order to update. (example:
                        "{{1.order.id}}")
                    email:
                      type: string
                      description: Customer email
                    note:
                      type: string
                      description: Note
                    poNumber:
                      type: string
                      description: >-
                        Purchase Order Number : The new purchase order number
                        for the order.
                    tags:
                      type: string
                      description: 'Tags : Accepts an array or comma-separated list of tags.'
                    metafields:
                      type: object
                      description: |-
                        Metafields (example: "[
                            {
                            "key": "new",
                            "value": "newvalue",
                            "value_type": "string",
                            "namespace": "global"
                            }
                          ]")
                      properties: {}
                    shippingAddress:
                      type: object
                      description: >-
                        Shipping Address : The new shipping address for the
                        order. (example: "{

                        "address1": "123 Main St",

                        "city": "Anytown",

                        "province": "CA",

                        "country": "US",

                        "zip": "12345"

                        }")
                      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: "{

                        "customAttributes": [
                                {
                                  "key": "key",
                                  "value": "123"
                                }
                              ]
                        }")
                      properties: {}
                  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.

````