阿里健康检验检测业务,isv检验检测项目门店关系同步到健康,支持检验检测项目门店关系的增加和删除
名称 | 类型 | 是否必须 | 示例值 | 更多限制 | 描述 |
---|---|---|---|---|---|
isv_relation_status | String | 必须 | EFFECTIVE | EFFECTIVE 有效,INVALID 无效 | |
isv_store_codes | String [] | 必须 | 12321312 |
|
isv门店编码 |
isv_item_code | String | 必须 | 3006662 | 检验检测项目isv侧编码 |
名称 | 类型 | 示例值 | 描述 |
---|---|---|---|
result_msg | String | 参数异常 | 结果描述 |
result_status | String | FAIL | SUCCESS - 成功,FAIL - 失败,UNKNOWN - 未知或处理中 |
result_code | String | PARAM_ILLEGAL | 可读的错误码 |
1 2 3 4 5 6 7 | TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret); AlibabaAlihealthLabItemStoreRelationSyncRequest req = new AlibabaAlihealthLabItemStoreRelationSyncRequest(); req.setIsvRelationStatus( "EFFECTIVE" ); req.setIsvStoreCodes( "12321312" ); req.setIsvItemCode( "3006662" ); AlibabaAlihealthLabItemStoreRelationSyncResponse rsp = client.execute(req); System.out.println(rsp.getBody()); |
1 2 3 4 5 | < alibaba_alihealth_lab_item_store_relation_sync_response > < result_msg >参数异常</ result_msg > < result_status >FAIL</ result_status > < result_code >PARAM_ILLEGAL</ result_code > </ alibaba_alihealth_lab_item_store_relation_sync_response > |
1 2 3 4 5 6 | < error_response > < code >50</ code > < msg >Remote service error</ msg > < sub_code >isv.invalid-parameter</ sub_code > < sub_msg >非法参数</ sub_msg > </ error_response > |
错误码 | 错误描述 | 解决方案 |
---|