AMTE Business Object OpenAPI (H3 Yun / 氚云 low-code BPM platform)

A single anonymously-readable OpenAPI 3.0.1 document served from AMTE's own openapi.amteglobal.cn subdomain, describing one operation — POST /api/Object/LoadBizObjects — that pages business-object (form) records out of a low-code BPM/workflow engine. The parameter vocabulary (EngineCode, EngineSecret, SchemaCode, pageIndex, pageSize) and the MyResult/JsonResult envelope are the published integration contract of the Chinese low-code BPM platform H3 Yun (氚云, Aozhe/H3), so this is a vendor platform AMTE OPERATES as a tenant, not an API AMTE designed or markets. There is no developer portal, no signup, no documentation page and no publicly advertised program behind it: the contract was found only by resolving the openapi.* subdomain during STEP 0b contract discovery. Auth is a JWT bearer token declared in components.securitySchemes and applied globally; the Swagger UI at the host root is additionally wrapped in a username/password overlay, which no artifact here attempts to pass.

Operations 1

POST /api/Object/LoadBizObjects #

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/amte-business-object-openapi-h3-yun-氚云-low-code-bpm-platform"
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

advancedmaterialstechnologyengineering-openapi.json Raw ↑
{
  "openapi": "3.0.1",
  "info": {
    "title": "Default",
    "version": "1.0.0"
  },
  "paths": {
    "/api/Object/LoadBizObjects": {
      "post": {
        "tags": [
          "Object"
        ],
        "operationId": "api-Object-LoadBizObjects-Post",
        "parameters": [
          {
            "name": "EngineCode",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "EngineSecret",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "SchemaCode",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "pageIndex",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "pageSize",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/MyResult_JsonResult"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/MyResult_JsonResult"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/MyResult_JsonResult"
                }
              }
            }
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "JsonResult": {
        "type": "object",
        "properties": {
          "ContentType": {
            "type": "string",
            "nullable": true
          },
          "SerializerSettings": {
            "additionalProperties": false,
            "nullable": true
          },
          "StatusCode": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "Value": {
            "additionalProperties": false,
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "MyResult_JsonResult": {
        "type": "object",
        "properties": {
          "Successful": {
            "type": "boolean"
          },
          "ErrorMessage": {
            "additionalProperties": false,
            "nullable": true
          },
          "Logined": {
            "type": "boolean"
          },
          "ReturnData": {
            "$ref": "#/components/schemas/JsonResult"
          },
          "DataType": {
            "type": "integer",
            "format": "int32"
          }
        },
        "additionalProperties": false
      }
    },
    "securitySchemes": {
      "Bearer": {
        "type": "http",
        "description": "JWT Authorization header using the Bearer scheme.",
        "scheme": "bearer",
        "bearerFormat": "JWT"
      }
    }
  },
  "security": [
    {
      "Bearer": [ ]
    }
  ],
  "tags": [
    {
      "name": "Object"
    }
  ]
}