> ## 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 Abandoned Carts



## OpenAPI

````yaml /actionkit/openapi.json POST /projects/{project_id}/tools/#SHOPIFY_GET_ABANDONED_CARTS
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_ABANDONED_CARTS:
    post:
      summary: Get Abandoned Carts
      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_ABANDONED_CARTS
                parameters:
                  type: object
                  properties:
                    createdWithInLast-left:
                      type: string
                      description: >-
                        Created Within the Last : Restrict results to only
                        checkouts created within the specified time.
                      enum:
                        - minutes
                        - hours
                        - days
                    createdWithInLast-right:
                      type: string
                      description: >-
                        Created Within the Last Value : Restrict results to only
                        checkouts created within the specified time.
                    createdAfterId:
                      type: string
                      description: >-
                        Created After Record ID : Restrict results to after the
                        specified ID. (example: "450789469")
                    status:
                      type: string
                      description: >-
                        Status : Show only checkouts with a given status.
                        Defaults to showing only open abandoned checkouts.
                      enum:
                        - open
                        - closed
                    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")
                    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.

````