更新保险理赔单
名称 | 类型 | 是否必须 | 示例值 | 更多限制 | 描述 |
---|---|---|---|---|---|
biz_data | Json | 可选 | {} | 业务数据 | |
progress_list | String [] | 可选 | {} |
|
进度列表 |
claim_attachments | ClaimAttachment [] | 可选 |
|
附件列表 | |
|
|||||
policy_biz_no | String | 可选 | {} | 保单业务单号 | |
out_biz_no | String | 可选 | "" | 外部业务单号 | |
biz_source | String | 可选 | "" | 业务来源 | |
claim_fee | Number | 可选 | 100 | 理赔金额(单位为分) | |
claim_no | String | 可选 | "" | 理赔单号 | |
claim_out_biz_no | String | 可选 | "" | 理赔外部业务单号 | |
sp_no | String | 可选 | "" | 标准产品ID |
名称 | 类型 | 示例值 | 描述 |
---|---|---|---|
result | MtopResult | {} | result |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret); AlipayBaoxianClaimUpdateRequest req = new AlipayBaoxianClaimUpdateRequest(); req.setBizDataString( "{}" ); req.setProgressList( "{}" ); List<AlipayBaoxianClaimUpdateRequest.ClaimAttachment> list2 = new ArrayList<AlipayBaoxianClaimUpdateRequest.ClaimAttachment>(); AlipayBaoxianClaimUpdateRequest.ClaimAttachment obj3 = new AlipayBaoxianClaimUpdateRequest.ClaimAttachment(); list2.add(obj3); obj3.setType(3L); obj3.setName( "\"name\"" ); obj3.setSize(4L); obj3.setPath( "\"name/ddd.png\"" ); obj3.setDescription( "\"\"" ); obj3.setFileType( "\"\"" ); req.setClaimAttachments(list2); req.setPolicyBizNo( "{}" ); req.setOutBizNo( "\"\"" ); req.setBizSource( "\"\"" ); req.setClaimFee(100L); req.setClaimNo( "\"\"" ); req.setClaimOutBizNo( "\"\"" ); req.setSpNo( "\"\"" ); AlipayBaoxianClaimUpdateResponse rsp = client.execute(req); System.out.println(rsp.getBody()); |
1 2 3 4 5 6 7 8 | < alipay_baoxian_claim_update_response > < result > < model >{}</ model > < error_code >SYSTEM_ERROR</ error_code > < error_msg >服务不可用</ error_msg > < is_success >true</ is_success > </ result > </ alipay_baoxian_claim_update_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 > |
错误码 | 错误描述 | 解决方案 |
---|