💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
## 获取订单列表接口 请求地址:`https://open-api.10ss.net/printer/getorderpaginglist` 请求方式:POST ### 所需参数 |名 称|类 型|描 述| |----|----|----| |client_id|string|开发者的应用ID,在[开放平台](https://dev.10ss.net)创建应用时获得| |access_token|string|授权的token 必要参数| |machine_code|string|机器码| |page_index|int|查询条件—当前页码,暂只提供前`3`页数据| |page_size|int|查询条件—每页显示条数,每页最大条数`100`| |sign|string|签名 详见API文档列表-[接口签名](../apiprotocol.md)| |id|string|UUID4 详见API文档列表-[uuid4](../apiprotocol.md)| |timestamp|int|当前服务器时间戳(10位)| ### 同步响应参数说明 |名 称|类 型|描 述| |----|----|----| |`id`| string| 易联云订单id| |`receiving_time`| string| 接收打印数据时间| |`print_time`| string| 打印完成时间,若等于0且`status`也为0, 说明该订单已被取消打印| |`origin_id`| string| 商户内部系统订单号| |`status`| int| 1已打印 0未打印| |`content`| int| 打印内容| ### 返回详情 ~~~ {"error":"0","error_description":"success","body":[{"id":"137550437","receiving_time":"1534498949","print_time":"0","origin_id":"123123","status":0,"content":"打印内容"}]} {"error":"8","error_description":"打印机信息错误,参数有误"} {"error":"10","error_description":"权限不足"} {"error":"11","error_description":"sign验证失败"} {"error":"12","error_description":"缺少必要参数"} {"error":"18","error_description":"access_token已过期,请刷新access_token或者重新授权"} {"error":"19","error_description":"应用未上架或已下架"} {"error":"21","error_description":"关闭或重启失败"} {'error':'33', 'error_description':'Uuid不合法'} ~~~