Beeketing Abandoned Checkout API

You can query the Checkout resource to return abandoned checkouts. A checkout is considered abandoned when a customer leaves the checkout after the first page without completing their purchase

Operations 12

GET /admin/checkouts.json Retrieve a list of abandoned checkouts #
GET /admin/checkouts/count.json Retrieve count of abandoned checkouts #
POST /admin/checkouts/twilio-webhook.json Receive webhook from twilio #
GET /admin/checkouts/{checkout_id:\\d+}.json Retrieve a single abandoned checkout #
POST /admin/checkouts/{checkout_id:\\d+}/cancel-send-recovery-email.json Cancel scheduled email of an abandoned checkout #
POST /admin/checkouts/{checkout_id:\\d+}/cancel-send-recovery-sms.json Cancel scheduled sms of an abandoned checkout #
POST /admin/checkouts/{checkout_id:\\d+}/send-recovery-email.json Manually send abandoned checkout email #
GET /admin/checkouts/{checkout_id:\\d+}/send-recovery-email/get-review.json Retrieve an abandoned checkout email notification with preview content #
POST /admin/checkouts/{checkout_id:\\d+}/send-recovery-sms.json Manually send abandoned checkout sms #
GET /admin/checkouts/{checkout_id:\\d+}/send-recovery-sms/get-review.json Retrieve an abandoned checkout sms notification with preview content #
GET /admin/checkouts/{checkout_id:\\d+}/timeline.json Retrieve a list of timelines of an abandoned checkout #
PUT /admin/checkouts/{checkout_id:\\d+}/update-note.json Update abandoned checkout note #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/beeketing-abandoned-checkout-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

beeketing-abandoned-checkout-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: ShopBase Internal Abandoned Checkout API
  termsOfService: http://swagger.io/terms/
  version: 1.0.0
  contact:
    url: /
    email: support@shopbase.com
  license:
    name: ShopBase Dev 1.0
    url: https://www.shopbase.net
  x-logo:
    url: https://admin-cdn.shopbase.com/img/Compact.ac400184.svg
  description: You can query the Checkout resource to return abandoned checkouts. A checkout is considered abandoned when a customer leaves the checkout after the first page without completing their purchase
servers:
- url: https://shop-name.onshopbase.com
tags:
- description: You can query the Checkout resource to return abandoned checkouts. A checkout is considered abandoned when a customer leaves the checkout after the first page without completing their purchase
  name: Abandoned Checkout
paths:
  /admin/checkouts.json:
    get:
      summary: Retrieve a list of abandoned checkouts
      description: Retrieve a list of abandoned checkouts
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AbandonedCheckoutsSwaggerResponse'
      parameters:
      - name: page
        description: page query
        in: query
        required: false
        schema:
          type: number
      - name: limit
        description: limit query
        in: query
        required: false
        schema:
          type: number
      - name: email_statuses
        description: 'A comma-separated list of email statuses, supported values: scheduled,sent,not_sent'
        in: query
        required: false
        schema:
          type: string
      - name: sms_statuses
        description: 'A comma-separated list of sms statuses, supported values: scheduled,sent,not_sent,failed'
        in: query
        required: false
        schema:
          type: string
      - name: recovery_statuses
        description: 'A comma-separated list of recovery statuses, supported values: recovered,not_recovered'
        in: query
        required: false
        schema:
          type: string
      - name: search
        description: customer name, product, ...
        in: query
        required: false
        schema:
          type: string
      tags:
      - Abandoned Checkout
      operationId: retrieves-a-list-of-checkouts
      security:
      - APP_ACCESS_TOKEN:
        - read_orders
  /admin/checkouts/count.json:
    get:
      summary: Retrieve count of abandoned checkouts
      description: Retrieve count of abandoned checkouts
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CountResponse'
      parameters:
      - name: email_statuses
        description: 'A comma-separated list of email statuses, supported values: scheduled,sent,not_sent'
        in: query
        required: false
        schema:
          type: string
      - name: sms_statuses
        description: 'A comma-separated list of sms statuses, supported values: scheduled,sent,not_sent,failed'
        in: query
        required: false
        schema:
          type: string
      - name: recovery_statuses
        description: 'A comma-separated list of recovery statuses, supported values: recovered,not_recovered'
        in: query
        required: false
        schema:
          type: string
      - name: search
        description: customer name, product, ...
        in: query
        required: false
        schema:
          type: string
      tags:
      - Abandoned Checkout
      operationId: count-checkouts
      security:
      - APP_ACCESS_TOKEN:
        - read_orders
  /admin/checkouts/twilio-webhook.json:
    post:
      summary: Receive webhook from twilio
      description: Receive webhook from twilio to update sms log, update abandoned checkout sms status, opt out sms conversation
      responses: {}
      tags:
      - Abandoned Checkout
      operationId: receive-webhook-from-twilio
  /admin/checkouts/{checkout_id:\\d+}.json:
    get:
      summary: Retrieve a single abandoned checkout
      description: Retrieve a single abandoned checkout
      responses: {}
      parameters:
      - name: checkout_id
        description: checkout id
        in: path
        required: true
        schema:
          type: number
      tags:
      - Abandoned Checkout
      operationId: retrieves-a-checkout
      security:
      - APP_ACCESS_TOKEN:
        - read_orders
  /admin/checkouts/{checkout_id:\\d+}/cancel-send-recovery-email.json:
    post:
      summary: Cancel scheduled email of an abandoned checkout
      description: Cancel scheduled email of an abandoned checkout
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AbandonedCheckoutsUpdateSwaggerResponse'
      parameters:
      - name: checkout_id
        description: checkout id
        in: path
        required: true
        schema:
          type: number
      tags:
      - Abandoned Checkout
      operationId: cancel-recovery-email
      security:
      - APP_ACCESS_TOKEN:
        - write_orders
  /admin/checkouts/{checkout_id:\\d+}/cancel-send-recovery-sms.json:
    post:
      summary: Cancel scheduled sms of an abandoned checkout
      description: Cancel scheduled sms of an abandoned checkout
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AbandonedCheckoutsUpdateSwaggerResponse'
      parameters:
      - name: checkout_id
        description: checkout id
        in: path
        required: true
        schema:
          type: number
      tags:
      - Abandoned Checkout
      operationId: cancel-recovery-sms
      security:
      - APP_ACCESS_TOKEN:
        - write_orders
  /admin/checkouts/{checkout_id:\\d+}/send-recovery-email.json:
    post:
      summary: Manually send abandoned checkout email
      description: Manually send abandoned checkout email
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AbandonedCheckoutsUpdateSwaggerResponse'
      parameters:
      - name: checkout_id
        description: checkout id
        in: path
        required: true
        schema:
          type: number
      tags:
      - Abandoned Checkout
      operationId: send-recovery-email
      security:
      - APP_ACCESS_TOKEN:
        - write_orders
  /admin/checkouts/{checkout_id:\\d+}/send-recovery-email/get-review.json:
    get:
      summary: Retrieve an abandoned checkout email notification with preview content
      description: Retrieve an abandoned checkout email notification with preview content
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotificationWithSublingResponseDto'
      parameters:
      - name: param
        description: checkout id
        in: path
        required: true
        schema:
          type: number
      - name: category
        description: 'notification category, current supported value: orders'
        in: query
        required: true
        schema:
          type: string
      - name: type
        description: 'notification type, current supported value: abandoned_checkout'
        in: query
        required: true
        schema:
          type: string
      tags:
      - Abandoned Checkout
      operationId: get-email-preview
      security:
      - APP_ACCESS_TOKEN:
        - read_orders
  /admin/checkouts/{checkout_id:\\d+}/send-recovery-sms.json:
    post:
      summary: Manually send abandoned checkout sms
      description: Manually send abandoned checkout sms
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AbandonedCheckoutsUpdateSwaggerResponse'
      parameters:
      - name: checkout_id
        description: checkout id
        in: path
        required: true
        schema:
          type: number
      tags:
      - Abandoned Checkout
      operationId: send-recovery-sms
      security:
      - APP_ACCESS_TOKEN:
        - write_orders
  /admin/checkouts/{checkout_id:\\d+}/send-recovery-sms/get-review.json:
    get:
      summary: Retrieve an abandoned checkout sms notification with preview content
      description: Retrieve an abandoned checkout sms notification with preview content
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotificationWithSublingResponseDto'
      parameters:
      - name: param
        description: checkout id
        in: path
        required: true
        schema:
          type: number
      - name: category
        description: 'notification category, current supported value: orders'
        in: query
        required: true
        schema:
          type: string
      - name: type
        description: 'notification type, current supported value: abandoned_checkout'
        in: query
        required: true
        schema:
          type: string
      tags:
      - Abandoned Checkout
      operationId: get-sms-preview
      security:
      - APP_ACCESS_TOKEN:
        - read_orders
  /admin/checkouts/{checkout_id:\\d+}/timeline.json:
    get:
      summary: Retrieve a list of timelines of an abandoned checkout
      description: Retrieve a list of timelines of an abandoned checkout
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AbandonedCheckoutActivitiesSwaggerResponse'
      parameters:
      - name: param
        description: checkout id
        in: path
        required: true
        schema:
          type: number
      tags:
      - Abandoned Checkout
      operationId: retrieves-a-list-of-checkout-timelines
      security:
      - APP_ACCESS_TOKEN:
        - read_orders
  /admin/checkouts/{checkout_id:\\d+}/update-note.json:
    put:
      summary: Update abandoned checkout note
      description: Update abandoned checkout note
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AbandonedCheckoutsUpdateSwaggerResponse'
      parameters:
      - name: checkout_id
        description: checkout id
        in: path
        required: true
        schema:
          type: number
      tags:
      - Abandoned Checkout
      operationId: update-checkout-note
      security:
      - APP_ACCESS_TOKEN:
        - read_orders
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AbandonedCheckoutsNoteUpdateSwaggerRequest'
              description: note update request body
        description: note update request body
        required: true
components:
  schemas:
    DiscountApplication:
      properties:
        allocation_method:
          type: string
        amount:
          type: number
        code:
          type: string
        discount_type:
          type: string
        is_valid:
          type: boolean
        price_rule_id:
          type: integer
        price_rule_title:
          type: string
        price_rule_type:
          type: string
        scope:
          type: string
        type:
          type: string
        value:
          type: number
        value_type:
          type: string
      type: object
    TaxLineDto:
      properties:
        price:
          type: number
          description: The amount added to the order for this tax in the shop currency.
          example: 25.81
        rate:
          type: number
          description: The tax rate applied to the order to calculate the tax price.
          example: 0.13
        title:
          type: string
          description: The name of the tax.
          example: HST
      type: object
    ShippingRateDto:
      properties:
        item_based:
          $ref: '#/components/schemas/ItemBasedShippingRateDto'
        price_based:
          $ref: '#/components/schemas/PriceBasedShippingRateDto'
        profile_id:
          type: integer
        weight_based:
          $ref: '#/components/schemas/WeightBasedShippingRateDto'
      type: object
    CheckoutDetailPaidInfo:
      properties:
        discount_code:
          type: string
        discount_total:
          type: number
        shipping_fee:
          type: number
        shipping_name:
          type: string
        subtotal_price:
          type: number
        tax_total:
          type: number
        total_price:
          type: number
      type: object
    WeightBasedShippingRateDto:
      properties:
        created_at:
          type: integer
        id:
          type: integer
        name:
          type: string
        price:
          type: number
        price_unit:
          type: string
        shipping_zone_id:
          type: integer
        shop_id:
          type: integer
        updated_at:
          type: integer
        weight_high:
          type: number
        weight_low:
          type: number
        weight_unit:
          type: string
      type: object
    AbandonedCheckoutsNoteUpdateSwaggerRequest:
      properties:
        checkout:
          $ref: '#/components/schemas/AbandonedCheckoutNoteSwaggerRequest'
      type: object
    AbandonedCheckoutNoteSwaggerRequest:
      properties:
        note:
          type: string
      type: object
    AbandonedCheckoutsUpdateSwaggerResponse:
      properties:
        success:
          type: boolean
      type: object
    CustomerAddressDetail:
      properties:
        address1:
          type: string
          description: The customer's mailing address.
          example: 123 Fake Street
        address2:
          type: string
          description: An additional field for the customer's mailing address.
        city:
          type: string
          description: The customer's city, town, or village.
          example: Fakecity
        company:
          type: string
          description: The customer's company.
        country:
          type: string
          description: The customer's country.
          example: Vietnam
        country_code:
          type: string
          description: The two-letter country code corresponding to the customer's country.
          example: VN
        country_id:
          type: integer
          description: A unique identifier for the customer.
        country_name:
          type: string
          description: The customer's normalized country name.
          example: Viet nam
        cpf_number:
          type: string
          description: Brazil CPF Number
        cpf_or_cnpj_number:
          type: string
          description: CPF/CNPJ number
          example: 'CPF: 231.234.234-23, CNPJ: 23.123.423/4234-24'
        created_at:
          type: string
          description: Created at time
          format: date-time
        default:
          type: boolean
          description: Whether this address is the default address for the customer.
        first_name:
          type: string
          description: The customer's first name.
          example: John
        id:
          type: integer
          description: A unique identifier for the address.
        last_name:
          type: string
          description: The customer's last name.
          example: Smith
        latitude:
          type: number
          description: Latitude
        longitude:
          type: number
          description: Longtitude
        name:
          type: string
          description: Address name
          example: example name
        phone:
          type: string
          description: 'Phone number

            Example 555-555-5555'
        province:
          type: string
          description: Province
          example: Ontario
        province_code:
          type: string
          description: The code for the region of the address, such as the province, state, or district. For example QC for Quebec, Canada.
        updated_at:
          type: string
          description: Updated at time
          format: date-time
        zip:
          type: string
          description: ZIP
          example: K2P 1L4
      type: object
    OrderLineItemDiscountApplicationDto:
      properties:
        amount:
          type: number
          description: The discount amount allocated to the line in the shop currency.
        discount_application_index:
          type: integer
          description: The index of the associated discount application in the order's discount_applications list.
      type: object
    Timeline:
      properties:
        action:
          type: string
        body:
          type: string
        created_at:
          type: integer
        entities_type:
          type: string
        id:
          type: integer
        position:
          type: integer
        ref_id:
          type: integer
        shop_id:
          type: integer
        type:
          type: string
      type: object
    CustomerDto:
      properties:
        accepts_marketing:
          type: boolean
          description: Whether the customer has consented to receive marketing material via email.
          example: true
        addresses:
          items:
            $ref: '#/components/schemas/CustomerAddressDetail'
          type: array
          description: A list of the ten most recently updated addresses for the customer.
        average_spent:
          type: number
          description: The average amount of money that the customer has spent across their order history.
          example: 37.96
        created_at:
          type: string
          description: The date and time ([ISO 8601 format](https://en.wikipedia.org/wiki/ISO_8601)) when the customer was created.
          format: date-time
          example: '2012-08-24T14:01:46-04:00'
        currency:
          type: string
          description: The three-letter code ([ISO 4217 format](https://en.wikipedia.org/wiki/ISO_4217)) for the currency that the customer used when they paid for their last order. Defaults to the shop currency. Returns the shop currency for test orders.
          example: USD
        default_address:
          $ref: '#/components/schemas/CustomerAddressDetail'
          description: The default address for the customer.
        email:
          type: string
          description: The unique email address of the customer. Attempting to assign the same email address to multiple customers returns an error.
          example: test@shopbase.com
        first_name:
          type: string
          description: The customer's first name.
          example: John
        id:
          type: integer
          description: A unique identifier for the customer.
          example: 107333978
        last_name:
          type: string
          description: The customer's last name.
          example: English
        last_order_at:
          type: string
          description: The date and time ([ISO 8601 format](https://en.wikipedia.org/wiki/ISO_8601)) when the customer purchase a last order
          format: date-time
          example: '2012-08-24T14:01:46-04:00'
        last_order_id:
          type: integer
          description: The ID of the customer's last order.
          example: 234132602919
        last_order_name:
          type: string
          description: The name of the customer's last order. This is directly related to the name field on the Order resource.
          example: '#1169'
        last_sent_abandoned_email_at:
          type: string
          description: The date and time ([ISO 8601 format](https://en.wikipedia.org/wiki/ISO_8601)) when the last abandoned checkout email was sent to this customer
          format: date-time
          example: '2012-08-24T14:01:46-04:00'
        note:
          type: string
          description: A note about the customer.
          example: Placed an order that had a fraud warning
        orders_count:
          type: integer
          description: The number of orders associated with this customer.
          example: 6
        phone:
          type: string
          description: "The unique phone number ([E.164 format](https://en.wikipedia.org/wiki/E.164)) for this customer. Attempting to assign the same phone number to multiple customers returns an error. The property can be set using different formats, but each format must represent a number that can be dialed from anywhere in the world. The following formats are all valid:\n * 6135551212 \n * +16135551212 \n * (613)555-1212 \n * +1 613-555-1212"
          example: '+16135551111'
        state:
          type: string
          description: "The state of the customer's account with a shop. Default value: disabled. Valid values:\n\n * **disabled**: The customer doesn't have an active account. Customer acounts can be disabled from the ShopBase admin at any time.\n * **invited**: The customer has received an emailed invite to create an account.\n * **enabled**: The customer has created an account.\n * **declined**: The customer declined the email invite to create an account."
          example: disabled
        tags:
          type: string
          description: Tags that the shop owner has attached to the customer, formatted as a string of comma-separated values.
          example: loyal
        tax_exempt:
          type: boolean
          description: Whether the customer is exempt from paying taxes on their order. If ```true```, then taxes won't be applied to an order at checkout. If ```false```, then taxes will be applied at checkout.
          example: true
        total_spent:
          type: number
          description: The total amount of money that the customer has spent across their order history.
          example: 37.96
        updated_at:
          type: string
          description: The date and time ([ISO 8601 format](https://en.wikipedia.org/wiki/ISO_8601)) when the customer information was last updated.
          format: date-time
          example: '2012-08-24T14:01:46-04:00'
        verified_email:
          type: boolean
          description: Whether the customer has verified their email address.
          example: true
      type: object
    AbandonedCheckoutsSwaggerResponse:
      properties:
        checkouts:
          items:
            $ref: '#/components/schemas/AbandonedCheckoutDto'
          type: array
      type: object
    ShippingRate:
      properties:
        cart_item_id:
          type: integer
          description: The line item id which this shipping rate is applied for
          example: 123213213123
        code:
          type: string
          description: A reference to the combined shipping method.
          example: weight_based_47925+weight_based_47926+weight_based_47928
        id:
          type: integer
          description: The Shipping Rate Id
          example: 43531
        is_post_purchase:
          type: boolean
        price:
          type: number
          description: The total price of this shipping rate for a variant in the order
          example: 8
        raw:
          $ref: '#/components/schemas/ShippingRateDto'
        title:
          type: string
          description: The title of the shipping method.
          example: Small Packet International Air
        type:
          type: string
          description: The Shipping Rate Type
          example: weight_based, price_based, item_based
        variant_id:
          type: integer
          description: The variant in which this shipping rate is applied for
          example: 123213213123
      type: object
    AbandonedCheckoutDto:
      properties:
        abandoned_at:
          type: string
          example: '2019-04-22T11:00:00-05:00'
        abandoned_checkout_url:
          type: string
          description: Checkout recovery link
        abandoned_email_status:
          type: string
          description: Email status of this checkout
        abandoned_sms_status:
          type: string
          description: Sms status of this checkout
        billing_address:
          $ref: '#/components/schemas/CustomerAddressDetail'
          description: Billing address of checkout
        billing_address_same_as_shipping_address:
          type: boolean
          description: Shipping address and Billing address are same or not
        buyer_accepts_marketing:
          type: boolean
          description: Is buyer accept marketing
        cart_token:
          type: string
          description: Cart token
          example: e2943ee64ff74b4395237c213561c27b
        checkout_detail_paid_info:
          $ref: '#/components/schemas/CheckoutDetailPaidInfo'
        completed_at:
          type: string
          example: '2019-04-22T11:00:00-05:00'
        created_at:
          type: string
          example: '2019-04-22T11:00:00-05:00'
        currency:
          type: string
          description: Shop currency
        customer:
          $ref: '#/components/schemas/CustomerDto'
          description: Customer info
        discount_applications:
          items:
            $ref: '#/components/schemas/DiscountApplication'
          type: array
        discount_applied:
          type: boolean
          description: Checkout has used discount or not
        discount_price:
          type: number
          description: Discount amount of checkout
        email:
          type: string
          description: customer email
          example: shopbase@shopbase.com
        gateway:
          type: string
          description: Payment gateway
          example: stripe
        id:
          type: integer
          description: Checkout ID
          example: 450789469
        line_items:
          items:
            $ref: '#/components/schemas/OrderLineItemDto'
          type: array
        lock_send_email_reason:
          type: string
          description: Reason not sent email
        name:
          type: string
          description: Checkout name (base on id)
          example: '#450789469'
        note:
          type: string
          description: Checkout note
        phone:
          type: string
          description: customer phone number
          example: '+12056685306'
        real_sent_at:
          type: string
          example: '2019-04-22T11:00:00-05:00'
        recovery_email_sent:
          type: boolean
          description: Is recovery email sent
        scheduled_sent_at:
          type: string
          example: '2019-04-22T11:00:00-05:00'
        shipping_address:
          $ref: '#/components/schemas/CustomerAddressDetail'
          description: Shipping address of checkout
        shipping_discount:
          type: number
          description: Caculated shipping discount
          example: 2
        shipping_fee:
          type: number
          description: Caculated shipping fee
          example: 10
        shipping_method:
          $ref: '#/components/schemas/ShippingMethod'
          description: Shipping method info
        shipping_name:
          type: string
          description: Shipping name
        shipping_price:
          type: number
          description: Shipping amount of checkout
        shipping_tax:
          type: number
          description: Caculated shipping tax
          example: 2
        shop_id:
          type: integer
          description: Shop ID
        subtotal_price:
          type: number
          description: Subtotal price of checkout
        taxes_included:
          type: boolean
          description: Is tax included
        token:
          type: string
          description: Checkout token
          example: e2943ee64ff74b4395237c213561c27b
        total_discounts:
          type: number
          description: Total discount amount of checkout
        total_line_items_price:
          type: number
          description: Total price of line item
        total_price:
          type: number
          description: Total price of checkout
        total_shipping:
          type: number
          description: it's equal shipping_fee - shipping_discount + shipping_tax
          example: 10
        total_tax:
          type: number
          description: Total tax amount
        total_weight:
          type: number
          description: Cart total weight
        updated_at:
          type: string
          example: '2019-04-22T11:00:00-05:00'
      type: object
    AbandonedCheckoutActivitiesSwaggerResponse:
      properties:
        timeline_items:
          items:
            $ref: '#/components/schemas/Timeline'
          type: array
      type: object
    FilterRule:
      properties:
        column:
          type: string
        condition:
          type: string
        relation:
          type: string
      type: object
    CountResponse:
      properties:
        count:
          type: integer
      type: object
    ShippingMethod:
      properties:
        carrier_code:
          type: string
        discount_amount:
          type: number
        discounted_price:
          type: number
        method_code:
          type: string
        method_title:
          type: string
        price:
          type: number
        shipping_rates:
          items:
            $ref: '#/components/schemas/ShippingRate'
          type: array
        shipping_rule_id:
          type: integer
        shipping_rule_type:
          type: string
      type: object
    OrderLineItemDto:
      properties:
        discount_allocations:
          items:
            $ref: '#/components/schemas/OrderLineItemDiscountApplicationDto'
          type: array
          description: An ordered list of amounts allocated by discount applications.
        discount_amount:
          type: number
          description: Discount amount
          example: 1
        fulfillable_quantity:
          type: integer
          description: "The amount available to fulfill, calculated as follows: \n `quantity - max(refunded_quantity, fulfilled_quantity) - pending_fulfilled_quantity - open_fulfilled_quantity`"
          example: 1
        fulfillment_service:
          type: string
          description: 'The service provider that''s fulfilling the item. Valid values: manual, or the name of the provider, such as `amazon` or `shipwire`.'
          example: amazon
        fulfillment_status:
          type: string
          description: 'How far along an order is in terms line items fulfilled. Valid values: null, processing, partial-processing, fulfilled, partial, and not_eligible.'
          example: fulfilled
        gift_card:
          type: boolean
          description: Whether the item is a gift card. If `true`, then the item is not taxed or considered for shipping charges.
        image_src:
          type: string
          description: Image source
          example: https://example.com/img.jpg
        is_post_purchase_item:
          type: boolean
          description: Is post purchase item
        item_discount_price:
          type: number
          description: Item discount price
          example: 20
        line_item_discount_amount:
          type: number
          description: Line item discount amount
          example: 20
        line_item_discount_price:
          type: number
          description: Line item discount price
          example: 100
        line_item_price:
          type: number
          description: Line item price
          example: 100
        line_item_price_after_discount:
          type: number
          description: Line item price after discount
          example: 20
        line_item_price_before_discount:
          type: number
          description: Line item price before discount
          example: 20
        line_item_price_with_explicit_discount:
          type: number
          description: Line item price with explicit discount
          example: 10
        line_item_weight:
          type: number
          description: Line item weight
          example: 10
        name:
          type: string
          description: The name of the product variant.
        not_explicit_discount_price:
          type: number
          description: Not explitcit disco

# --- truncated at 32 KB (39 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/beeketing/refs/heads/main/openapi/beeketing-abandoned-checkout-api-openapi.yml