Infusionsoft (Keap) E Commerce API

E-Commerce-Endpoint

Operations 32

GET /v1/orders List Orders #
POST /v1/orders Create an Order #
GET /v1/orders/model Retrieve Custom Order Model #
GET /v1/orders/{orderId} Retrieve an Order #
DELETE /v1/orders/{orderId} Delete an Order #
POST /v1/orders/{orderId}/items Create an Order Item #
DELETE /v1/orders/{orderId}/items/{orderItemId} Delete an Order Item #
PUT /v1/orders/{orderId}/paymentPlan Replace an Order Pay Plan #
GET /v1/orders/{orderId}/payments Retrieve Order Payments #
POST /v1/orders/{orderId}/payments Create a Payment #
GET /v1/orders/{orderId}/transactions Retrieve Order Transactions #
GET /v1/subscriptions List Subscriptions #
POST /v1/subscriptions Create Subscription #
GET /v1/subscriptions/model Retrieve Subscription Model #
GET /v1/transactions List Transactions #
GET /v1/transactions/{transactionId} Retrieve a Transaction #
PUT /rest/v1/orders/{orderId}/paymentPlan Replace an Order Pay Plan #
GET /rest/v1/subscriptions List Subscriptions #
POST /rest/v1/subscriptions Create Subscription #
GET /rest/v1/orders/{orderId}/payments Retrieve Order Payments #
POST /rest/v1/orders/{orderId}/payments Create a Payment #
POST /rest/v1/orders/{orderId}/items Create an Order Item #
GET /rest/v1/orders List Orders #
POST /rest/v1/orders Create an Order #
GET /rest/v1/transactions/{transactionId} Retrieve a Transaction #
GET /rest/v1/transactions List Transactions #
GET /rest/v1/subscriptions/model Retrieve Subscription Model #
GET /rest/v1/orders/{orderId}/transactions Retrieve Order Transactions #
GET /rest/v1/orders/{orderId} Retrieve an Order #
DELETE /rest/v1/orders/{orderId} Delete an Order #
GET /rest/v1/orders/model Retrieve Custom Order Model #
DELETE /rest/v1/orders/{orderId}/items/{orderItemId} Delete an Order Item #

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/infusionsoft-e-commerce-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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

OpenAPI Specification

infusionsoft-e-commerce-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Infusionsoft E Commerce API
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0
  version: '1.0'
  description: 'Operations tagged E-Commerce across 3 of this provider''s published API definitions: infusionsoft-rest-v1-2025-11-05-openapi-original.json, infusionsoft-rest-v1-openapi-original.json, infusionsoft-rest-v1-openapi.json. Each path carries the servers of the definition it was published in.'
servers:
- url: https://api.infusionsoft.com/crm/rest
- url: https://api.infusionsoft.com/crm
tags:
- name: E-Commerce
  description: E-Commerce-Endpoint
paths:
  /v1/orders:
    get:
      tags:
      - E-Commerce
      summary: List Orders
      description: 'Retrieves a list of all orders using the specified search criteria. Each order may or may not have items.


        Potential values for order status:`DRAFT`, `SENT`, `VIEWED`, `PAID`'
      operationId: listOrdersUsingGET
      parameters:
      - name: contact_id
        in: query
        description: Returns orders for the provided contact id
        schema:
          type: integer
          format: int64
        example: 0
      - name: limit
        in: query
        description: Sets a total of items to return
        schema:
          type: integer
          format: int32
        example: 0
      - name: offset
        in: query
        description: Sets a beginning range of items to return
        schema:
          type: integer
          format: int32
        example: 0
      - name: order
        in: query
        description: Attribute to order items by. Dates are ordered by most recent at the top. Default is creation_date.
        schema:
          type: string
          enum:
          - order_date
          - update_date
      - name: paid
        in: query
        description: Sets paid status of items to return
        schema:
          type: boolean
      - name: product_id
        in: query
        description: Returns orders containing the provided product id
        schema:
          type: integer
          format: int64
        example: 0
      - name: since
        in: query
        description: Date to start searching from ex. `2017-01-01T22:17:59.039Z`
        schema:
          type: string
      - name: until
        in: query
        description: Date to search to ex. `2017-01-01T22:17:59.039Z`
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                title: OrderList
                type: object
                properties:
                  count:
                    type: integer
                    format: int32
                  next:
                    type: string
                  orders:
                    type: array
                    items:
                      title: EcommerceReportingOrder
                      type: object
                      properties:
                        allow_payment:
                          type: boolean
                        allow_paypal:
                          type: boolean
                        contact:
                          title: EcommerceReportingOrderContactDetails
                          type: object
                          properties:
                            company_name:
                              type: string
                            email:
                              type: string
                            first_name:
                              type: string
                            id:
                              type: integer
                              format: int64
                            job_title:
                              type: string
                            last_name:
                              type: string
                        contact_id:
                          type: string
                        creation_date:
                          type: string
                        id:
                          type: integer
                          format: int64
                        invoice_number:
                          type: integer
                          format: int64
                        lead_affiliate_id:
                          type: integer
                          format: int64
                        modification_date:
                          type: string
                        notes:
                          type: string
                        order_date:
                          type: string
                        order_items:
                          type: array
                          items:
                            title: EcommerceReportingOrderItem
                            type: object
                            properties:
                              cost:
                                type: number
                                format: double
                              description:
                                type: string
                              discount:
                                type: number
                                format: double
                              id:
                                type: integer
                                format: int64
                              jobRecurringId:
                                type: integer
                                format: int64
                              name:
                                type: string
                              notes:
                                type: string
                              price:
                                type: number
                                format: double
                              product:
                                title: EcommerceReportingSimpleProduct
                                type: object
                                properties:
                                  description:
                                    type: string
                                  id:
                                    type: integer
                                    format: int64
                                  name:
                                    type: string
                                  shippable:
                                    type: boolean
                                  sku:
                                    type: string
                                  taxable:
                                    type: boolean
                              quantity:
                                type: integer
                                format: int32
                              specialAmount:
                                type: number
                                format: double
                              specialId:
                                type: integer
                                format: int64
                              specialPctOrAmt:
                                type: integer
                                format: int32
                              subscriptionPlan:
                                title: SubscriptionPlan
                                type: object
                                properties:
                                  active:
                                    type: boolean
                                  cycle:
                                    type: integer
                                    format: int32
                                  frequency:
                                    type: integer
                                    format: int32
                                  id:
                                    type: integer
                                    format: int64
                                  number_of_cycles:
                                    type: integer
                                    format: int32
                                  plan_price:
                                    type: number
                                    format: double
                                  prorate:
                                    type: boolean
                                  subscription_plan_index:
                                    type: integer
                                    format: int32
                                  subscription_plan_name:
                                    type: string
                              type:
                                type: string
                        order_type:
                          type: string
                        payment_plan:
                          title: EcommerceReportingPaymentPlan
                          type: object
                          properties:
                            auto_charge:
                              type: boolean
                            credit_card_id:
                              type: integer
                              format: int64
                            days_between_payments:
                              type: integer
                              format: int64
                            days_between_retries:
                              type: integer
                              format: int64
                            initial_payment_amount:
                              type: number
                              format: double
                            initial_payment_date:
                              type: string
                            initial_payment_percent:
                              type: number
                              format: double
                            max_charge_attempts:
                              type: integer
                              format: int64
                            number_of_payments:
                              type: integer
                              format: int64
                            payment_gateway:
                              title: EcommerceReportingPaymentGateway
                              type: object
                              properties:
                                merchant_account_id:
                                  type: integer
                                  format: int64
                                merchant_account_name:
                                  type: string
                                use_default:
                                  type: boolean
                            payment_method_id:
                              type: string
                            plan_start_date:
                              type: string
                        product_id:
                          type: string
                        recurring:
                          type: boolean
                        refund_total:
                          type: number
                          format: double
                        sales_affiliate_id:
                          type: integer
                          format: int64
                        shipping_information:
                          title: EcommerceReportingShippingInformation
                          type: object
                          properties:
                            city:
                              type: string
                            company:
                              type: string
                            country:
                              type: string
                            first_name:
                              type: string
                            id:
                              type: integer
                              format: int64
                            invoiceToCompany:
                              type: boolean
                            last_name:
                              type: string
                            middle_name:
                              type: string
                            phone:
                              type: string
                            state:
                              type: string
                            street1:
                              type: string
                            street2:
                              type: string
                            zip:
                              type: string
                        source_type:
                          type: string
                          enum:
                          - INVOICE
                          - API
                          - CHECKOUT_FORM
                          - MANUAL_PAYMENT
                          - UNKNOWN
                          - QBO_SYNC
                        status:
                          type: string
                        terms:
                          type: string
                        title:
                          type: string
                        total:
                          type: number
                          format: double
                        total_due:
                          type: number
                          format: double
                        total_paid:
                          type: number
                          format: double
                  previous:
                    type: string
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                title: Error
                type: object
                properties:
                  cause:
                    title: Throwable
                    type: object
                    properties:
                      cause:
                        $ref: '#/components/schemas/Throwable'
                      localizedMessage:
                        type: string
                      message:
                        type: string
                      stackTrace:
                        type: array
                        items:
                          title: StackTraceElement
                          type: object
                          properties:
                            classLoaderName:
                              type: string
                            className:
                              type: string
                            fileName:
                              type: string
                            lineNumber:
                              type: integer
                              format: int32
                            methodName:
                              type: string
                            moduleName:
                              type: string
                            moduleVersion:
                              type: string
                            nativeMethod:
                              type: boolean
                      suppressed:
                        type: array
                        items:
                          $ref: '#/components/schemas/Throwable'
                  localizedMessage:
                    type: string
                  message:
                    type: string
                  stackTrace:
                    type: array
                    items:
                      title: StackTraceElement
                      type: object
                      properties:
                        classLoaderName:
                          type: string
                        className:
                          type: string
                        fileName:
                          type: string
                        lineNumber:
                          type: integer
                          format: int32
                        methodName:
                          type: string
                        moduleName:
                          type: string
                        moduleVersion:
                          type: string
                        nativeMethod:
                          type: boolean
                  suppressed:
                    type: array
                    items:
                      title: Throwable
                      type: object
                      properties:
                        cause:
                          $ref: '#/components/schemas/Throwable'
                        localizedMessage:
                          type: string
                        message:
                          type: string
                        stackTrace:
                          type: array
                          items:
                            title: StackTraceElement
                            type: object
                            properties:
                              classLoaderName:
                                type: string
                              className:
                                type: string
                              fileName:
                                type: string
                              lineNumber:
                                type: integer
                                format: int32
                              methodName:
                                type: string
                              moduleName:
                                type: string
                              moduleVersion:
                                type: string
                              nativeMethod:
                                type: boolean
                        suppressed:
                          type: array
                          items:
                            $ref: '#/components/schemas/Throwable'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                title: Error
                type: object
                properties:
                  cause:
                    title: Throwable
                    type: object
                    properties:
                      cause:
                        $ref: '#/components/schemas/Throwable'
                      localizedMessage:
                        type: string
                      message:
                        type: string
                      stackTrace:
                        type: array
                        items:
                          title: StackTraceElement
                          type: object
                          properties:
                            classLoaderName:
                              type: string
                            className:
                              type: string
                            fileName:
                              type: string
                            lineNumber:
                              type: integer
                              format: int32
                            methodName:
                              type: string
                            moduleName:
                              type: string
                            moduleVersion:
                              type: string
                            nativeMethod:
                              type: boolean
                      suppressed:
                        type: array
                        items:
                          $ref: '#/components/schemas/Throwable'
                  localizedMessage:
                    type: string
                  message:
                    type: string
                  stackTrace:
                    type: array
                    items:
                      title: StackTraceElement
                      type: object
                      properties:
                        classLoaderName:
                          type: string
                        className:
                          type: string
                        fileName:
                          type: string
                        lineNumber:
                          type: integer
                          format: int32
                        methodName:
                          type: string
                        moduleName:
                          type: string
                        moduleVersion:
                          type: string
                        nativeMethod:
                          type: boolean
                  suppressed:
                    type: array
                    items:
                      title: Throwable
                      type: object
                      properties:
                        cause:
                          $ref: '#/components/schemas/Throwable'
                        localizedMessage:
                          type: string
                        message:
                          type: string
                        stackTrace:
                          type: array
                          items:
                            title: StackTraceElement
                            type: object
                            properties:
                              classLoaderName:
                                type: string
                              className:
                                type: string
                              fileName:
                                type: string
                              lineNumber:
                                type: integer
                                format: int32
                              methodName:
                                type: string
                              moduleName:
                                type: string
                              moduleVersion:
                                type: string
                              nativeMethod:
                                type: boolean
                        suppressed:
                          type: array
                          items:
                            $ref: '#/components/schemas/Throwable'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                title: Error
                type: object
                properties:
                  cause:
                    title: Throwable
                    type: object
                    properties:
                      cause:
                        $ref: '#/components/schemas/Throwable'
                      localizedMessage:
                        type: string
                      message:
                        type: string
                      stackTrace:
                        type: array
                        items:
                          title: StackTraceElement
                          type: object
                          properties:
                            classLoaderName:
                              type: string
                            className:
                              type: string
                            fileName:
                              type: string
                            lineNumber:
                              type: integer
                              format: int32
                            methodName:
                              type: string
                            moduleName:
                              type: string
                            moduleVersion:
                              type: string
                            nativeMethod:
                              type: boolean
                      suppressed:
                        type: array
                        items:
                          $ref: '#/components/schemas/Throwable'
                  localizedMessage:
                    type: string
                  message:
                    type: string
                  stackTrace:
                    type: array
                    items:
                      title: StackTraceElement
                      type: object
                      properties:
                        classLoaderName:
                          type: string
                        className:
                          type: string
                        fileName:
                          type: string
                        lineNumber:
                          type: integer
                          format: int32
                        methodName:
                          type: string
                        moduleName:
                          type: string
                        moduleVersion:
                          type: string
                        nativeMethod:
                          type: boolean
                  suppressed:
                    type: array
                    items:
                      title: Throwable
                      type: object
                      properties:
                        cause:
                          $ref: '#/components/schemas/Throwable'
                        localizedMessage:
                          type: string
                        message:
                          type: string
                        stackTrace:
                          type: array
                          items:
                            title: StackTraceElement
                            type: object
                            properties:
                              classLoaderName:
                                type: string
                              className:
                                type: string
                              fileName:
                                type: string
                              lineNumber:
                                type: integer
                                format: int32
                              methodName:
                                type: string
                              moduleName:
                                type: string
                              moduleVersion:
                                type: string
                              nativeMethod:
                                type: boolean
                        suppressed:
                          type: array
                          items:
                            $ref: '#/components/schemas/Throwable'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                title: Error
                type: object
                properties:
                  cause:
                    title: Throwable
                    type: object
                    properties:
                      cause:
                        $ref: '#/components/schemas/Throwable'
                      localizedMessage:
                        type: string
                      message:
                        type: string
                      stackTrace:
                        type: array
                        items:
                          title: StackTraceElement
                          type: object
                          properties:
                            classLoaderName:
                              type: string
                            className:
                              type: string
                            fileName:
                              type: string
                            lineNumber:
                              type: integer
                              format: int32
                            methodName:
                              type: string
                            moduleName:
                              type: string
                            moduleVersion:
                              type: string
                            nativeMethod:
                              type: boolean
                      suppressed:
                        type: array
                        items:
                          $ref: '#/components/schemas/Throwable'
                  localizedMessage:
                    type: string
                  message:
                    type: string
                  stackTrace:
                    type: array
                    items:
                      title: StackTraceElement
                      type: object
                      properties:
                        classLoaderName:
                          type: string
                        className:
                          type: string
                        fileName:
                          type: string
                        lineNumber:
                          type: integer
                          format: int32
                        methodName:
                          type: string
                        moduleName:
                          type: string
                        moduleVersion:
                          type: string
                        nativeMethod:
                          type: boolean
                  suppressed:
                    type: array
                    items:
                      title: Throwable
                      type: object
                      properties:
                        cause:
                          $ref: '#/components/schemas/Throwable'
                        localizedMessage:
                          type: string
                        message:
                          type: string
                        stackTrace:
                          type: array
                          items:
                            title: StackTraceElement
                            type: object
                            properties:
                              classLoaderName:
                                type: string
                              className:
                                type: string
                              fileName:
                                type: string
                              lineNumber:
                                type: integer
                                format: int32
                              methodName:
                                type: string
                              moduleName:
                                type: string
                              moduleVersion:
                                type: string
                              nativeMethod:
                                type: boolean
                        suppressed:
                          type: array
                          items:
                            $ref: '#/components/schemas/Throwable'
      deprecated: false
    post:
      tags:
      - E-Commerce
      summary: Create an Order
      description: Create a one time order with order items.
      operationId: createOrderUsingPOST
      requestBody:
        description: createOrder
        content:
          application/json:
            schema:
              title: CreateOrder
              required:
              - contact_id
              - order_date
              - order_items
              - order_title
              - order_type
              type: object
              properties:
                contact_id:
                  type: integer
                  format: int64
                lead_affiliate_id:
                  type: integer
                  format: int64
                order_date:
                  type: string
                  format: date-time
                order_items:
                  type: array
                  items:
                    title: CreateOrderItem
                    required:
                    - product_id
                    - quantity
                    type: object
                    properties:
                      description:
                        type: string
                      item_type:
                        type: string
                        enum:
                        - UNKNOWN
                        - SHIPPING
                        - TAX
                        - SERVICE
                        - PRODUCT
                        - UPSELL
                        - FINANCE_CHARGE
                        - SPECIAL
                        - PROGRAM
                        - SUBSCRIPTION
                        - SPECIAL_FREE_TRIAL_DAYS
                        - SPECIAL_ORDER_TOTAL
                        - SPECIAL_PRODUCT
                        - SPECIAL_CATEGORY
                        - SPECIAL_SHIPPING
                        - TIP
                        - OTHER
                      price:
                        type: string
                        description: Overridable price of the product, if not specified, the default will be used. Must be greater than or equal to 0.
                      product_id:
                        type: integer
                        description: The id of the product to be added to the order.
                        format: int64
                      quantit

# --- truncated at 32 KB (432 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/infusionsoft/refs/heads/main/openapi/infusionsoft-e-commerce-api-openapi.yml