DealHub Product Provisioning API

The Product Provisioning API from DealHub — 1 operation(s) for product provisioning.

Operations 1

POST /rh/product-provisioning #

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/dealhub-product-provisioning-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

dealhub-product-provisioning-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: 1.0.0
  title: Subskribe Product Provisioning API
servers:
- url: https://api.app.subskribe.com
security:
- ApiKeyAuth: []
tags:
- name: Product Provisioning
paths:
  /rh/product-provisioning:
    post:
      tags:
      - Product Provisioning
      operationId: syncSkus
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/NewSkuSyncRequest'
      responses:
        default:
          description: successful operation
components:
  schemas:
    SkuSyncInput:
      type: object
      required:
      - sku
      - type
      properties:
        sku:
          type: string
          readOnly: true
        name:
          type: string
          readOnly: true
        type:
          type: string
          readOnly: true
        subtype:
          type: string
          readOnly: true
        desc:
          type: string
          readOnly: true
        defaultTag:
          type: string
          readOnly: true
        tags:
          type: array
          readOnly: true
          items:
            type: string
        productAttributes:
          $ref: '#/components/schemas/SkuProductAttributes'
    SkuProductAttributes:
      type: object
      properties:
        subscriptionItemType:
          type: string
          readOnly: true
        billingTerm:
          type: string
          readOnly: true
        trackableARR:
          type: boolean
          readOnly: true
        isEventBased:
          type: boolean
          readOnly: true
        erpId:
          type: string
          readOnly: true
        taxRateStrategyId:
          type: string
          readOnly: true
        revRecognitionRuleId:
          type: string
          readOnly: true
        taxLiabilityAccountId:
          type: string
          readOnly: true
        deferredRevenueAccountId:
          type: string
          readOnly: true
        recognizedRevenueAccountId:
          type: string
          readOnly: true
        contractAssetAccountId:
          type: string
          readOnly: true
        customAttributes:
          type: object
          readOnly: true
          additionalProperties:
            type: object
    NewSkuSyncRequest:
      type: object
      required:
      - skus
      properties:
        skus:
          type: array
          readOnly: true
          items:
            $ref: '#/components/schemas/SkuSyncInput'
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key