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

# Get Orders



## OpenAPI

````yaml /actionkit/openapi.json POST /projects/{project_id}/tools/#SHOPIFY_GET_ORDERS
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_GET_ORDERS:
    post:
      summary: Get Orders
      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_GET_ORDERS
                parameters:
                  type: object
                  properties:
                    orderIds:
                      type: string
                      description: >-
                        Order IDs : Only return orders matching the IDs
                        provided. You can enter an array or a comma-separated
                        list of IDs. (example: "450789469, 450789470,")
                    createdAtMin:
                      type: string
                      description: >-
                        Created After : Only return orders created after the
                        provided date (ISO or Unix timestamp). (example:
                        "2014-04-25T16:15:47-04:00")
                    createdAtMax:
                      type: string
                      description: >-
                        Created Before : Only return orders created before the
                        provided date (ISO or Unix timestamp). (example:
                        "2014-04-25T16:15:47-04:00")
                    updatedAtMin:
                      type: string
                      description: >-
                        Updated after : Only return orders updated after the
                        provided date (ISO or Unix timestamp). (example:
                        "2014-04-25T16:15:47-04:00")
                    updatedAtMax:
                      type: string
                      description: >-
                        Updated before : Only return orders updated before the
                        provided date (ISO or Unix timestamp). (example:
                        "2014-04-25T16:15:47-04:00")
                    limit:
                      type: string
                      description: >-
                        Limit results : Limit the maximum number of orders to
                        return. Defaults to 250 if left blank. Pagination only
                        accepts the limit field. Other fields cannot be used for
                        filtering the paginated records.
                  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.

````