企业🤖AI Agent构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
### 提交订单 1.Api 信息 | 接口信息项 | 内容 | | --- | --- | | 真实环境 | https://api.howssl.com/Home/Order/commitOrder | | 请求方式 | Post | | content-type | multipart/form-data | | 描述 | 此接口用于订购证书,并向第三方服务器申请证书,您需要保持余额充足,付款之后需完成域名验证,方能颁发证书。正确则返回相关的证书信息。错误则返回相应的错误代码。 | 2.参数定义 | 参数名称 | 参数类型 | 必填 | 说明 | | --- | --- | :---: | --- | | token | string | Y | 身份证凭据,生成token请联系网站管理员| | check_id | string | Y | 订单号唯一核对标识 | | | | 函数返回 | | status | boolean | Y | true,代表请求成功,返回正确参数,false,代表请求失败| | msg | string | Y | 返回的数据信息描述 | | data | JSON | Y | 请求成功返回的业务数据 | | code | int | Y | 返回状态码 | 3.返回参数详解(data) | 返回参数名称 | 参数类型 | 说明 | | --- | --- | --- | | order_id | string | 订单号(不再改变!) | | valid_info | JSON | 验证信息 | | >>> DCVdnsHost | string | DNS验证 host | | >>> DCVdnsValue | string | DNS验证 value | | >>> DCVdnsType | string | DNS验证 type | | >>> DCVfileName | string | 域文件验证 文件名 | | >>> DCVfileContent | string | 文件验证 文件内容 | 4.返回结果示例 ``` {     "status": true,     "msg": "消费成功",     "data": {         "order_id": "wcvt0va3wq",         "valid_info": {             "DCVdnsHost": "_2b03bb19c9a8af1abe9a33f60e0954a2",             "DCVdnsValue": "d7fa0361c38eeec20d51779f86fd5ae2.13bc2cc32e6a58eb47331cf78c6c977e.comodoca.com",             "DCVdnsType": "CNAME",             "DCVfileName": "2B03BB19C9A8AF1ABE9A33F60E0954A2.txt",             "DCVfileContent": "d7fa0361c38eeec20d51779f86fd5ae213bc2cc32e6a58eb47331cf78c6c977e\ncomodoca.com"         }     },     "code": 200 } ``` * * *