Omniful, Inc. Billing API

The Billing API from Omniful, Inc. — 9 operation(s) for billing.

Operations 10

GET /sales-channel/public/v1/tenants/billings/contracts Get Contracts #
POST /sales-channel/public/v1/tenants/billings/contracts Create Contract #
GET /sales-channel/public/v1/tenants/billings/contracts/{id} Get Single Contract #
PUT /sales-channel/public/v1/tenants/billings/contracts/{id}/terminate Terminate Contract #
GET /sales-channel/public/v1/tenants/bills Get Bills #
GET /sales-channel/public/v1/tenants/bills/{bill_name} Get Bill #
GET /sales-channel/public/v1/tenants/hubs/{bill_name}/bills Get Hub Bills #
POST /sales-channel/public/v1/tenants/bills/generate Generate Bill #
PUT /sales-channel/public/v1/tenants/bills/{bill_name}/status Update Bill Status #
POST /sales-channel/public/v1/tenants/bills/{bill_name}/finalize Create Finalize Bill #

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/omniful-inc-billing-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

omniful-inc-billing-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Omniful Integration APIs Background Jobs Billing API
  version: v1
  description: Omniful unified supply chain and fulfillment platform integration APIs (Order Management, Warehouse/Inventory, Returns, Purchase Orders, Shipment/TMS, Webhooks). Derived faithfully from the provider-published Postman collection at docs.omniful.tech; paths, methods, parameters, and request examples are as published, response schemas are not enumerated in the source.
  contact:
    url: https://docs.omniful.tech
servers:
- url: https://prodapi.omniful.com
security:
- bearerAuth: []
tags:
- name: Billing
paths:
  /sales-channel/public/v1/tenants/billings/contracts:
    get:
      summary: Get Contracts
      operationId: getGetContracts
      tags:
      - Billing
      responses:
        '200':
          description: Successful response
    post:
      summary: Create Contract
      operationId: postCreateContract
      tags:
      - Billing
      requestBody:
        content:
          application/json: {}
      responses:
        '200':
          description: Successful response
  /sales-channel/public/v1/tenants/billings/contracts/{id}:
    get:
      summary: Get Single Contract
      operationId: getGetSingleContract
      tags:
      - Billing
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response
  /sales-channel/public/v1/tenants/billings/contracts/{id}/terminate:
    put:
      summary: Terminate Contract
      operationId: putTerminateContract
      tags:
      - Billing
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response
  /sales-channel/public/v1/tenants/bills:
    get:
      summary: Get Bills
      operationId: getGetBills
      tags:
      - Billing
      responses:
        '200':
          description: Successful response
  /sales-channel/public/v1/tenants/bills/{bill_name}:
    get:
      summary: Get Bill
      operationId: getGetBill
      tags:
      - Billing
      parameters:
      - name: bill_name
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response
  /sales-channel/public/v1/tenants/hubs/{bill_name}/bills:
    get:
      summary: Get Hub Bills
      operationId: getGetHubBills
      tags:
      - Billing
      parameters:
      - name: bill_name
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response
  /sales-channel/public/v1/tenants/bills/generate:
    post:
      summary: Generate Bill
      operationId: postGenerateBill
      tags:
      - Billing
      requestBody:
        content:
          application/json:
            example:
              contract_name: mnoor
              start_date: 04-09-2024
              end_date: 03-10-2024
      responses:
        '200':
          description: Successful response
  /sales-channel/public/v1/tenants/bills/{bill_name}/status:
    put:
      summary: Update Bill Status
      operationId: putUpdateBillStatus
      tags:
      - Billing
      parameters:
      - name: bill_name
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            example:
              status: rejected
              remark: Payment received on time
      responses:
        '200':
          description: Successful response
  /sales-channel/public/v1/tenants/bills/{bill_name}/finalize:
    post:
      summary: Create Finalize Bill
      operationId: postCreateFinalizeBill
      tags:
      - Billing
      parameters:
      - name: bill_name
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            example:
              total: 100.0
              remark: Payment for September
              discount:
                percentage: 10
                value: 10.0
      responses:
        '200':
          description: Successful response
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer