Incentivio Sub Item Controller API

The sub-item-controller API from Incentivio — 4 operation(s) for sub-item-controller.

Operations 4

PUT /incentivio-ordering-service/subitems #
GET /incentivio-ordering-service/adminsubitems #
GET /incentivio-ordering-service/adminsubitems/{subitemid} #
DELETE /incentivio-ordering-service/subitems/{subitemid} #

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/incentivio-sub-item-controller-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

incentivio-sub-item-controller-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: OpenAPI definition Sub Item Controller API
  version: v0
servers:
- url: https://adminapi.incentivio.com/incentivio-admin-api
  description: Generated server url
tags:
- name: sub-item-controller
paths:
  /incentivio-ordering-service/subitems:
    put:
      tags:
      - sub-item-controller
      operationId: addOrUpdatePackage
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateSubItemRequestDTO'
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/CreateSubItemResponseDTO'
  /incentivio-ordering-service/adminsubitems:
    get:
      tags:
      - sub-item-controller
      operationId: listSubItemsByClientIdAndItemIdForAdmin
      parameters:
      - name: itemid
        in: query
        required: false
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ListSubItemResponseAdminDTO'
  /incentivio-ordering-service/adminsubitems/{subitemid}:
    get:
      tags:
      - sub-item-controller
      operationId: viewSubItemByIdForAdmin
      parameters:
      - name: subitemid
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ViewSubItemResponseAdminDTO'
  /incentivio-ordering-service/subitems/{subitemid}:
    delete:
      tags:
      - sub-item-controller
      operationId: deleteSubItems
      parameters:
      - name: subitemid
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
components:
  schemas:
    DisplayInfo:
      type: object
      properties:
        langCode:
          type: string
        title:
          type: string
        shortDescription:
          type: string
        longDescription:
          type: string
        smallImage:
          type: array
          items:
            type: string
        mediumImage:
          type: array
          items:
            type: string
    ListSubItemResponseAdminDTO:
      type: object
      properties:
        subItemId:
          type: string
        extSubItemId:
          type: string
        merchantId:
          type: string
        clientId:
          type: string
        name:
          type: string
        price:
          type: integer
          format: int32
        uom:
          type: string
        sku:
          type: string
        upc:
          type: string
        brandId:
          type: string
        categoryId:
          type: string
        startDate:
          type: string
        endDate:
          type: string
        extendedAttributes:
          type: object
          additionalProperties:
            type: string
        privateAttributes:
          type: object
          additionalProperties:
            type: string
        externalId:
          type: string
        displayRank:
          type: integer
          format: int32
        displayInfo:
          type: array
          items:
            $ref: '#/components/schemas/DisplayInfo'
          uniqueItems: true
        status:
          type: string
        title:
          type: string
        label:
          type: string
        createdDate:
          type: string
        updatedDate:
          type: string
    CreateSubItemResponseDTO:
      type: object
      properties:
        subItemId:
          type: string
        label:
          type: string
    CreateSubItemRequestDTO:
      type: object
      properties:
        subItemId:
          type: string
        extSubItemId:
          type: string
        merchantId:
          type: string
          minLength: 1
        clientId:
          type: string
          minLength: 1
        name:
          type: string
        price:
          type: integer
          format: int32
        uom:
          type: string
        sku:
          type: string
        upc:
          type: string
        brandId:
          type: string
        categoryId:
          type: string
        startDate:
          type: string
        endDate:
          type: string
        extendedAttributes:
          type: object
          additionalProperties:
            type: string
        privateAttributes:
          type: object
          additionalProperties:
            type: string
        externalId:
          type: string
        displayRank:
          type: integer
          format: int32
        displayInfo:
          type: array
          items:
            $ref: '#/components/schemas/DisplayInfo'
          uniqueItems: true
        status:
          type: string
        title:
          type: string
        label:
          type: string
      required:
      - clientId
      - merchantId
    ViewSubItemResponseAdminDTO:
      type: object
      properties:
        subItemId:
          type: string
        extSubItemId:
          type: string
        merchantId:
          type: string
        clientId:
          type: string
        name:
          type: string
        price:
          type: integer
          format: int32
        uom:
          type: string
        sku:
          type: string
        upc:
          type: string
        brandId:
          type: string
        categoryId:
          type: string
        startDate:
          type: string
        endDate:
          type: string
        extendedAttributes:
          type: object
          additionalProperties:
            type: string
        privateAttributes:
          type: object
          additionalProperties:
            type: string
        externalId:
          type: string
        displayRank:
          type: integer
          format: int32
        displayInfo:
          type: array
          items:
            $ref: '#/components/schemas/DisplayInfo'
          uniqueItems: true
        status:
          type: string
        title:
          type: string
        label:
          type: string
        createdDate:
          type: string
        updatedDate:
          type: string