Ondemand Config API

The Config API from Ondemand — 2 operation(s) for config.

Operations 2

POST /config/v1/public/mqtt_user Create a new MQTT user #
DELETE /config/v1/public/mqtt_user/{userId} Delete an MQTT user #

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/ondemand-config-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

ondemand-config-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: OnDemand AI Chat Config API
  version: 1.0.0
  description: OnDemand AI is a RAG-powered AI Platform-as-a-Service. This OpenAPI definition was assembled by the API Evangelist enrichment pipeline from the per-operation OpenAPI fragments published on the OnDemand AI ReadMe documentation (https://docs.on-demand.io/reference).
servers:
- url: https://api.on-demand.io
- url: https://api.on-demand.io/automation/api
- url: https://api.on-demand.io/services/v1/public/service
- url: https://gateway-dev.on-demand.io
security:
- apikey: []
tags:
- name: Config
paths:
  /config/v1/public/mqtt_user:
    post:
      summary: Create a new MQTT user
      operationId: createMqttUser
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                type:
                  type: string
                  description: The type of the MQTT user (e.g., 'admin')
                  example: admin
              required:
              - type
      responses:
        '200':
          description: MQTT user created successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  msg:
                    type: string
                    description: Success message
                    example: MqttUser Created Successfully
                  password:
                    type: string
                    description: The password for the created MQTT user
                    example: securepassword123
        '400':
          description: Invalid request or user already exists
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    description: Error message
                    example: Invalid payload or user already exists
        '401':
          description: Unauthorized access
        '500':
          description: Server error
      security:
      - ApiKeyAuth: []
      tags:
      - Config
  /config/v1/public/mqtt_user/{userId}:
    delete:
      summary: Delete an MQTT user
      operationId: deleteMqttUser
      parameters:
      - name: userId
        in: path
        required: true
        schema:
          type: string
        description: The ID of the MQTT user to delete
      responses:
        '200':
          description: MQTT user deleted successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  msg:
                    type: string
                    description: Success message
                    example: MqttUser Deleted Successfully
        '400':
          description: Invalid request
        '401':
          description: Unauthorized access
        '404':
          description: MQTT user not found
        '500':
          description: Server error
      security:
      - ApiKeyAuth: []
      tags:
      - Config
components:
  securitySchemes:
    apikey:
      type: apiKey
      in: header
      name: apikey
    ApiKeyAuth:
      type: apiKey
      in: header
      name: apikey