批量查询是否关联交易
名称 | 类型 | 是否必须 | 示例值 | 更多限制 | 描述 |
---|---|---|---|---|---|
related_party_param | RelatedPartyParam | 必须 | 查询入参对象 | ||
|
|||||
system_code | String | 必须 | test | 调用方系统标识 | |
system_secret | String | 必须 | test | 调用方系统密钥 |
名称 | 类型 | 示例值 | 描述 |
---|---|---|---|
result | ActionResult | 返回结果外层对象 | |
|
1 2 3 4 5 6 7 8 9 10 11 12 | TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret); AlibabaRelatedRuleBatchQueryRequest req = new AlibabaRelatedRuleBatchQueryRequest(); AlibabaRelatedRuleBatchQueryRequest.RelatedPartyParam obj1 = new AlibabaRelatedRuleBatchQueryRequest.RelatedPartyParam(); obj1.setCompanyId(290L); obj1.setCompanyName( "测试xxx有限公司" ); obj1.setRelatedPartyNames( "" ); obj1.setRelatedPartyGroup( "alibaba" ); req.setRelatedPartyParam(obj1); req.setSystemCode( "test" ); req.setSystemSecret( "test" ); AlibabaRelatedRuleBatchQueryResponse rsp = client.execute(req); System.out.println(rsp.getBody()); |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | < alibaba_related_rule_batch_query_response > < result > < content > < related_party_result > < company_id >290</ company_id > < related_party_group_enum >alibaba</ related_party_group_enum > < connected_transaction >{xxx公司:true}</ connected_transaction > < company_location >domestic</ company_location > < company_name >阿里巴巴xxx</ company_name > < company_en_name >Alibabaxxx</ company_en_name > </ related_party_result > </ content > < error_code >1001</ error_code > < error_level >-100</ error_level > < error_msg >参数不正确</ error_msg > < success >true</ success > </ result > </ alibaba_related_rule_batch_query_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 > |
错误码 | 错误描述 | 解决方案 |
---|