alitrip.btrip.corpop.hotel.exceedapply.get (商旅酒店第三方超标审批单搜索接口)

商旅酒店第三方超标审批单搜索接口

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
rq OpenIsvSearchRq 必须 入参
  • └ corp_id
  • String
  • 必须
  • sdfg
  • 第三方企业id
  • └ apply_id
  • Number
  • 必须
  • 12345
  • 商旅审批单id

响应参数

名称 类型 示例值 描述
result HisvResult result 出参对象
  • └ success
  • Boolean
  • true
  • 是否成功
  • └ result_code
  • Number
  • 0
  • 错误码
  • └ result_msg
  • String
  • 成功
  • 错误信息
  • module
  • OpenIsvExceedApplyRs
  • module
  • 审批单对象
  • └ corp_id
  • String
  • asdfg
  • 商旅企业id
  • └ apply_id
  • Number
  • 12345
  • 商旅审批单id
  • └ status
  • Number
  • 1
  • 审批单状态 0:审批中 1:已同意 2:已拒绝
  • └ btrip_cause
  • String
  • 出差
  • 出差原因
  • └ exceed_type
  • Number
  • 16
  • 超标类型,16:金额超标
  • └ exceed_reason
  • String
  • 出差
  • 超标原因
  • └ origin_standard
  • String
  • 50000
  • 原差旅标准(分)
  • apply_intention_info_do
  • ApplyIntentionInfoDo
  • apply_intention_info_do
  • 意向出行信息
  • └ city_code
  • String
  • SHA
  • 入住城市三字码
  • └ city_name
  • String
  • 上海
  • 入住城市名称
  • └ check_in
  • Date
  • 2021-07-08
  • 入住日期
  • └ check_out
  • Date
  • 2021-07-08
  • 离店日期
  • └ price
  • Number
  • 1000
  • 意向酒店金额(分)
  • └ together
  • Boolean
  • true
  • 是否合住
  • └ type
  • Number
  • 16
  • 超标类型,16:金额超标
  • └ user_id
  • String
  • weifeng
  • 第三方用户id
  • └ submit_time
  • String
  • 2021-07-08 15:23:56
  • 审批单提交时间
  • └ thirdpart_corp_id
  • String
  • test_corp
  • 第三方企业id
  • └ thirdpart_apply_id
  • String
  • 0001A1100000007EX08O
  • 第三方出差审批单号

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlitripBtripCorpopHotelExceedapplyGetRequest req = new AlitripBtripCorpopHotelExceedapplyGetRequest();
AlitripBtripCorpopHotelExceedapplyGetRequest.OpenIsvSearchRq obj1 = new AlitripBtripCorpopHotelExceedapplyGetRequest.OpenIsvSearchRq();
obj1.setCorpId("sdfg");
obj1.setApplyId(12345L);
req.setRq(obj1);
AlitripBtripCorpopHotelExceedapplyGetResponse rsp = client.execute(req, sessionKey);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alitrip_btrip_corpop_hotel_exceedapply_get_response>
    <result>
        <success>true</success>
        <result_code>0</result_code>
        <result_msg>成功</result_msg>
        <module>
            <corp_id>asdfg</corp_id>
            <apply_id>12345</apply_id>
            <status>1</status>
            <btrip_cause>出差</btrip_cause>
            <exceed_type>16</exceed_type>
            <exceed_reason>出差</exceed_reason>
            <origin_standard>50000</origin_standard>
            <apply_intention_info_do>
                <city_code>SHA</city_code>
                <city_name>上海</city_name>
                <check_in>2021-07-08</check_in>
                <check_out>2021-07-08</check_out>
                <price>1000</price>
                <together>true</together>
                <type>16</type>
            </apply_intention_info_do>
            <user_id>weifeng</user_id>
            <submit_time>2021-07-08 15:23:56</submit_time>
            <thirdpart_corp_id>test_corp</thirdpart_corp_id>
            <thirdpart_apply_id>0001A1100000007EX08O</thirdpart_apply_id>
        </module>
    </result>
</alitrip_btrip_corpop_hotel_exceedapply_get_response>

异常示例

  • XML示例
  • JSON示例
<error_response>
    <code>50</code>
    <msg>Remote service error</msg>
    <sub_code>isv.invalid-parameter</sub_code>
    <sub_msg>非法参数</sub_msg>
</error_response>

错误码解释

错误码 错误描述 解决方案
1010 找不到超标审批单 没有找到对应的超标单,排查一下入参是否正确

API工具

如何获得此API

FAQ

返回
顶部