Incentivio Bulk Image Upload Controller API

The bulk-image-upload-controller API from Incentivio — 3 operation(s) for bulk-image-upload-controller.

Operations 5

GET /incentivio-menu-service/bulkimageuploads/{id} #
PUT /incentivio-menu-service/bulkimageuploads/{id} #
GET /incentivio-menu-service/bulkimageuploads #
POST /incentivio-menu-service/bulkimageuploads #
POST /incentivio-menu-service/bulkimageuploads/{id}/process #

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-bulk-image-upload-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-bulk-image-upload-controller-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: OpenAPI definition Bulk Image Upload Controller API
  version: v0
servers:
- url: https://adminapi.incentivio.com/incentivio-admin-api
  description: Generated server url
tags:
- name: bulk-image-upload-controller
paths:
  /incentivio-menu-service/bulkimageuploads/{id}:
    get:
      tags:
      - bulk-image-upload-controller
      operationId: read
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
          maxLength: 24
          minLength: 24
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BulkImageUploadReadResponse'
    put:
      tags:
      - bulk-image-upload-controller
      operationId: update
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
          maxLength: 24
          minLength: 24
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BulkImageUploadUpdateRequest'
        required: true
      responses:
        '200':
          description: OK
  /incentivio-menu-service/bulkimageuploads:
    get:
      tags:
      - bulk-image-upload-controller
      operationId: search_1
      parameters:
      - name: count
        in: query
        required: false
        schema:
          type: integer
          format: int32
          maximum: 100
          minimum: 10
      - name: dateCreatedGte
        in: query
        required: false
        schema:
          type: string
      - name: dateCreatedLt
        in: query
        required: false
        schema:
          type: string
      - name: page
        in: query
        required: false
        schema:
          type: integer
          format: int32
          minimum: 0
      - name: sortBy
        in: query
        required: false
        schema:
          type: string
          maxLength: 255
          minLength: 0
      - name: sortDirection
        in: query
        required: false
        schema:
          type: string
      - name: status
        in: query
        required: false
        schema:
          type: array
          items:
            type: string
      - name: type
        in: query
        required: false
        schema:
          type: array
          items:
            type: string
      - name: uploadId
        in: query
        required: false
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BulkImageUploadSearchResponse'
    post:
      tags:
      - bulk-image-upload-controller
      operationId: create
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BulkImageUploadCreateRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BulkImageUploadCreateResponse'
  /incentivio-menu-service/bulkimageuploads/{id}/process:
    post:
      tags:
      - bulk-image-upload-controller
      operationId: process
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
          maxLength: 24
          minLength: 24
      responses:
        '200':
          description: OK
components:
  schemas:
    ImageFileStatus:
      type: string
      enum:
      - ERROR
      - PROCESSED
      - QUEUED
      - UPLOADED
    BulkImageUploadUpdateRequest:
      type: object
      properties:
        id:
          type: string
        processedFiles:
          type: array
          items:
            $ref: '#/components/schemas/ImageFile'
        status:
          $ref: '#/components/schemas/BulkImageUploadStatus'
        statusMessage:
          type: string
      required:
      - processedFiles
      - status
    ImageFile:
      type: object
      properties:
        filename:
          type: string
        matches:
          type: array
          items:
            $ref: '#/components/schemas/ImageFileMatch'
        status:
          $ref: '#/components/schemas/ImageFileStatus'
        statusMessage:
          type: string
        url:
          type: string
      required:
      - filename
      - status
    BulkImageUploadReadResponse:
      type: object
      properties:
        bulkImageUpload:
          $ref: '#/components/schemas/BulkImageUpload'
    BulkImageUploadCreateResponse:
      type: object
      properties:
        id:
          type: string
    BulkImageUploadStatus:
      type: string
      enum:
      - COMPLETE
      - ERROR
      - PROCESSING
      - UPLOADED
      - UPLOADING
    BulkImageUploadCreateRequest:
      type: object
      properties:
        adminId:
          type: string
        clientId:
          type: string
        processedFiles:
          type: array
          items:
            $ref: '#/components/schemas/ImageFile'
        type:
          $ref: '#/components/schemas/BulkImageUploadType'
        uploadId:
          type: string
      required:
      - processedFiles
      - type
      - uploadId
    BulkImageUpload:
      type: object
      properties:
        dateCreated:
          type: string
        dateUpdated:
          type: string
        id:
          type: string
        adminId:
          type: string
        clientId:
          type: string
        processedFiles:
          type: array
          items:
            $ref: '#/components/schemas/ImageFile'
        status:
          $ref: '#/components/schemas/BulkImageUploadStatus'
        statusMessage:
          type: string
        type:
          $ref: '#/components/schemas/BulkImageUploadType'
        uploadId:
          type: string
      required:
      - adminId
      - clientId
      - dateCreated
      - dateUpdated
      - status
      - type
      - uploadId
    BulkImageUploadType:
      type: string
      enum:
      - CATALOG
      - GROUP
      - ITEM
    BulkImageUploadSearchResponse:
      type: object
      properties:
        bulkImageUploads:
          type: array
          items:
            $ref: '#/components/schemas/BulkImageUpload'
        paging:
          $ref: '#/components/schemas/PagingDto'
    ImageFileMatch:
      type: object
      properties:
        id:
          type: string
        title:
          type: string
      required:
      - id
      - title
    PagingDto:
      type: object
      properties:
        count:
          type: integer
          format: int32
        currentPage:
          type: integer
          format: int32
        total:
          type: integer
          format: int64
        totalPages:
          type: integer
          format: int64