EZRentOut Payments API

Order payments, taxes, coupons, and damage charges (invoicing).

Operations 5

GET /payment_options.api List payment options #
GET /pricing_coupons.api List pricing coupons #
PATCH /baskets/{orderNum}/charge_pre_payment.api Charge a payment against an order #
PATCH /baskets/{orderNum}/charge_damages.api Add damage charges to an order #
PATCH /baskets/{orderNum}/apply_taxes.api Apply taxes to an order #

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/ezrentout-payments-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

ezrentout-payments-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: EZRentOut Assets Payments API
  description: 'REST API for EZRentOut, the cloud equipment rental management platform from EZO (the company behind EZOfficeInventory). The API lets paying customers build custom integrations against their own rental account: orders (baskets), fixed assets, inventory and stock assets, bundles, customers and businesses, members, locations, availability, order payments and taxes, purchase orders, and maintenance / work orders.


    Every request is scoped to the customer''s own tenant at https://{subdomain}.ezrentout.com and is authenticated with a per-company access token. The token is generated in Settings (API is disabled by default and must be enabled by the account owner) and sent in a `token` HTTP header over HTTPS. Resource endpoints are namespaced with a `.api` suffix. List endpoints are paginated with a `page` query parameter (default 1). Dates use `mm/dd/yyyy` and times use `hh:mm`.


    Endpoint paths and the authentication model are grounded in EZRentOut''s public developer documentation (https://ezo.io/ezrentout/developers/). Request and response schemas here are modeled representations - EZRentOut does not publish a machine-readable OpenAPI document, so property sets are illustrative rather than exhaustive.'
  version: '1.0'
  contact:
    name: EZO / EZRentOut Support
    url: https://ezo.io/ezrentout/developers/
    email: support@ezo.io
  termsOfService: https://ezo.io/ezrentout/terms-of-service/
servers:
- url: https://{subdomain}.ezrentout.com
  description: Customer rental account (tenant)
  variables:
    subdomain:
      default: your-company
      description: Your EZRentOut company subdomain.
security:
- tokenAuth: []
tags:
- name: Payments
  description: Order payments, taxes, coupons, and damage charges (invoicing).
paths:
  /payment_options.api:
    get:
      operationId: listPaymentOptions
      tags:
      - Payments
      summary: List payment options
      responses:
        '200':
          description: Available payment options.
          content:
            application/json:
              schema:
                type: object
  /pricing_coupons.api:
    get:
      operationId: listCoupons
      tags:
      - Payments
      summary: List pricing coupons
      responses:
        '200':
          description: Available pricing coupons.
          content:
            application/json:
              schema:
                type: object
  /baskets/{orderNum}/charge_pre_payment.api:
    patch:
      operationId: chargeOrderPayment
      tags:
      - Payments
      summary: Charge a payment against an order
      parameters:
      - $ref: '#/components/parameters/OrderNum'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                amount:
                  type: number
                payment_option_id:
                  type: integer
      responses:
        '200':
          description: The payment was recorded.
  /baskets/{orderNum}/charge_damages.api:
    patch:
      operationId: chargeOrderDamages
      tags:
      - Payments
      summary: Add damage charges to an order
      parameters:
      - $ref: '#/components/parameters/OrderNum'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
      responses:
        '200':
          description: The damage charge was applied.
  /baskets/{orderNum}/apply_taxes.api:
    patch:
      operationId: applyOrderTaxes
      tags:
      - Payments
      summary: Apply taxes to an order
      parameters:
      - $ref: '#/components/parameters/OrderNum'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                custom_tax_ids:
                  type: array
                  items:
                    type: integer
      responses:
        '200':
          description: Taxes were applied.
components:
  parameters:
    OrderNum:
      name: orderNum
      in: path
      required: true
      description: The order (basket) number.
      schema:
        type: integer
  securitySchemes:
    tokenAuth:
      type: apiKey
      in: header
      name: token
      description: Per-company access token generated in Settings (API must be enabled by the account owner). Sent in the `token` HTTP header on every request over HTTPS.