openapi: 3.2.0 info: title: COSMOPlat IoT Platform Open Alarm Rules API version: 线上 (online) summary: Device, product, alarm, rule-chain, thing-model, telemetry and RPC operations for the COSMOPlat (Kaos) industrial IoT platform. description: "Machine-readable transcription of the COSMOPlat 物联开发平台 (IoT development platform) \"OpenApi-线上\" reference published by COSMOPlat at https://www.cosmoplat.com/help/detail/304/1038\n\nThe provider publishes this contract as an HTML reference table only — no OpenAPI, Swagger, Postman or other machine-readable artifact is served anywhere on cosmoplat.com. This document transcribes that reference so it can be read by a machine.\n\nGAPS THE PROVIDER HAS NOT PUBLISHED (deliberately left empty here rather than guessed):\n * No base URL / server host is stated anywhere in the reference, so `servers` is omitted.\n * No authentication scheme is documented for these operations, so `securitySchemes` is empty.\n * No per-operation 4xx/5xx catalogue is published; the single documented failure envelope from 公共分类 › 状态码描述 is wired as the `default` response.\n" contact: name: COSMOPlat email: market@cosmoplat.com url: https://www.cosmoplat.com/help x-provenance: authored_by: API Evangelist (catalog-authored) method: generated source: https://www.cosmoplat.com/help/detail/304/1038 generated: '2026-08-11' note: Transcribed field-for-field from the provider's published HTML API reference. COSMOPlat does not publish an OpenAPI document; this is not a provider artifact. Re-harvest and replace verbatim if COSMOPlat ever serves one. tags: - name: Alarm Rules paths: /alarm/setting/page: post: operationId: postAlarmSettingPage summary: 分页查询告警规则 tags: - Alarm Rules requestBody: required: true content: application/json: schema: type: object properties: page: type: number description: 页数 pageSize: type: number description: 页大小 deviceProductId: type: string description: 产品id title: type: string description: 名称 deviceId: type: string description: 设备Id required: - deviceProductId - title - deviceId responses: '200': description: 业务数据 / Business payload content: application/json: schema: type: object properties: data: type: array items: type: object properties: id: type: object properties: entityType: type: string description: 固定值:ALARM_SETTING id: type: string description: 告警规则ID description: 告警规则ID createdTime: type: number description: 创建时间 tenantId: type: object properties: entityType: type: string description: 固定值:TENANT id: type: string description: 租户ID description: 租户 title: type: string description: 名称 deviceProductId: type: object properties: entityType: type: string description: 固定值:TB_PRODUCT_MANAGE id: type: string description: 产品ID description: 产品ID description: type: string description: 告警规则描述 status: type: number description: 状态:1-启用,0-禁用 updatedTime: type: number description: 更新时间 alarmData: type: string description: 告警规则信息 deviceProductName: type: string description: 产品名称 name: type: string description: 名称 description: 业务数据 totalPages: type: number description: 总页数 totalElements: type: number description: 总记录数 hasNext: type: boolean description: 是否有下一条记录 default: description: 失败响应 / Failure envelope documented in 公共分类 › 状态码描述 content: application/json: schema: $ref: '#/components/schemas/Error' externalDocs: description: 分页查询告警规则 url: https://www.cosmoplat.com/help/detail/304/1038 /alarm/setting: post: operationId: postAlarmSetting summary: 创建告警规则 tags: - Alarm Rules requestBody: required: true content: application/json: schema: type: object properties: title: type: string description: 报警规则名称 deviceProductId: type: string description: 产品 description: type: string description: 报警规则描述 alarmData: type: string description: 报警规则详情 responses: '200': description: 成功 / Success default: description: 失败响应 / Failure envelope documented in 公共分类 › 状态码描述 content: application/json: schema: $ref: '#/components/schemas/Error' externalDocs: description: 创建告警规则 url: https://www.cosmoplat.com/help/detail/304/1038 /alarm/setting/{id}: delete: operationId: deleteAlarmSettingById summary: 删除告警规则 tags: - Alarm Rules parameters: - name: id in: path required: true schema: type: string responses: '200': description: 成功 / Success default: description: 失败响应 / Failure envelope documented in 公共分类 › 状态码描述 content: application/json: schema: $ref: '#/components/schemas/Error' externalDocs: description: 删除告警规则 url: https://www.cosmoplat.com/help/detail/304/1038 components: schemas: Error: type: object description: 失败报文 / Failure envelope (公共分类 › 状态码描述) properties: status: type: integer description: 状态码,和 httpCode 一致 / status code, same as the HTTP status message: type: string description: 状态描述 / status description errorCode: type: integer description: 错误码 / error code timestamp: type: string format: date-time description: 时间戳 / timestamp examples: - status: 500 message: 内部配置错误 errorCode: 2 timestamp: '2023-08-04T00:56:54.243+00:00' externalDocs: description: COSMOPlat IoT platform documentation url: https://www.cosmoplat.com/help/detail/304/1012