alitrip.btrip.city.car.apply.query (三方市内用车申请单查询)

三方市内用车申请单查询

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
rq CityCarApplyQueryRq 必须 入参对象
  • └ corp_id
  • String
  • 必须
  • corpx
  • 第三方企业ID
  • └ created_end_at
  • Date
  • 可选
  • 2021-03-18 20:26:56
  • 审批单创建时间小于值
  • └ created_start_at
  • Date
  • 可选
  • 2021-03-18 20:26:56
  • 审批单创建时间大于等于值
  • └ page_number
  • Number
  • 可选
  • 1
  • 页码,要求大于等于1,默认1
  • └ page_size
  • Number
  • 可选
  • 20
  • 每页数据量,要求大于等于1,默认20
  • └ third_part_apply_id
  • String
  • 可选
  • apply1
  • 三方审批单ID
  • └ user_id
  • String
  • 可选
  • user1
  • 三方员工ID

响应参数

名称 类型 示例值 描述
result BtripApplyResult module 结果对象
  • └ err_code
  • Number
  • 0
  • 结果码
  • └ err_msg
  • String
  • 成功
  • 结果描述
  • apply_list
  • OpenApplyRs []
  • apply
  • 审批单列表
  • approver_list
  • OpenApproverInfo []
  • approver
  • 审批人列表
  • └ note
  • String
  • 同意
  • 审批备注
  • └ operate_time
  • Date
  • 2021-03-18 20:26:56
  • 审批时间
  • └ order
  • Number
  • 1
  • 审批人排序对比值
  • └ status
  • Number
  • 1
  • 审批状态枚举:审批状态:0-审批中,1-已同意,2-已拒绝
  • └ status_desc
  • String
  • 同意
  • 审批状态描述
  • └ user_id
  • String
  • user1
  • 审批员工ID
  • └ user_name
  • String
  • 员工1
  • 审批员工名
  • └ depart_id
  • String
  • 1
  • 员工所在部门ID
  • └ depart_name
  • String
  • 部门1
  • 员工所在部门名
  • └ gmt_create
  • Date
  • 2021-03-18 20:26:56
  • 创建时间
  • └ gmt_modified
  • Date
  • 2021-03-18 20:26:56
  • 最近修改时间
  • itinerary_list
  • OpenItineraryInfo []
  • itinerary
  • 审批单关联的行程
  • └ arr_city
  • String
  • 杭州
  • 目的地城市
  • └ arr_city_code
  • String
  • HGH
  • 目的地城市三字码
  • └ arr_date
  • Date
  • 2021-03-18 20:26:56
  • 到达目的地城市时间
  • └ cost_center_id
  • Number
  • 1
  • 商旅内部成本中心ID
  • └ cost_center_name
  • String
  • 成本中心1
  • 成本中心名称
  • └ dep_city
  • String
  • 杭州
  • 出发城市
  • └ dep_city_code
  • String
  • HGH
  • 出发城市三字码
  • └ dep_date
  • Date
  • 2021-03-18 20:26:56
  • 出发时间
  • └ invoice_id
  • Number
  • 1
  • 商旅内部发票抬头ID
  • └ invoice_name
  • String
  • 发票抬头1
  • 发票抬头名称
  • └ itinerary_id
  • String
  • 1
  • 商旅内部行程单ID
  • └ project_code
  • String
  • projectx
  • 项目code
  • └ project_title
  • String
  • 项目x
  • 项目名称
  • └ traffic_type
  • Number
  • 4
  • 交通方式:4-市内交通
  • └ status
  • Number
  • 申请
  • 审批单状态:0-申请,1-同意,2-拒绝
  • └ status_desc
  • String
  • 0
  • 审批单状态:0-申请,1-同意,2-拒绝
  • └ thirdpart_id
  • String
  • apply1
  • 三方审批单ID
  • └ trip_cause
  • String
  • 杭州出差
  • 申请事由
  • └ trip_title
  • String
  • 杭州出差
  • 审批单标题
  • └ user_id
  • String
  • user1
  • 发起审批员工ID
  • └ user_name
  • String
  • 员工1
  • 发起审批员工名
  • └ total
  • Number
  • 10
  • 总数

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlitripBtripCityCarApplyQueryRequest req = new AlitripBtripCityCarApplyQueryRequest();
AlitripBtripCityCarApplyQueryRequest.CityCarApplyQueryRq obj1 = new AlitripBtripCityCarApplyQueryRequest.CityCarApplyQueryRq();
obj1.setCorpId("corpx");
obj1.setCreatedEndAt(StringUtils.parseDateTime("2021-03-18 20:26:56"));
obj1.setCreatedStartAt(StringUtils.parseDateTime("2021-03-18 20:26:56"));
obj1.setPageNumber(1L);
obj1.setPageSize(20L);
obj1.setThirdPartApplyId("apply1");
obj1.setUserId("user1");
req.setRq(obj1);
AlitripBtripCityCarApplyQueryResponse rsp = client.execute(req, sessionKey);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alitrip_btrip_city_car_apply_query_response>
    <result>
        <err_code>0</err_code>
        <err_msg>成功</err_msg>
        <apply_list>
            <open_apply_rs>
                <approver_list>
                    <open_approver_info>
                        <note>同意</note>
                        <operate_time>2021-03-18 20:26:56</operate_time>
                        <order>1</order>
                        <status>1</status>
                        <status_desc>同意</status_desc>
                        <user_id>user1</user_id>
                        <user_name>员工1</user_name>
                    </open_approver_info>
                </approver_list>
                <depart_id>1</depart_id>
                <depart_name>部门1</depart_name>
                <gmt_create>2021-03-18 20:26:56</gmt_create>
                <gmt_modified>2021-03-18 20:26:56</gmt_modified>
                <itinerary_list>
                    <open_itinerary_info>
                        <arr_city>杭州</arr_city>
                        <arr_city_code>HGH</arr_city_code>
                        <arr_date>2021-03-18 20:26:56</arr_date>
                        <cost_center_id>1</cost_center_id>
                        <cost_center_name>成本中心1</cost_center_name>
                        <dep_city>杭州</dep_city>
                        <dep_city_code>HGH</dep_city_code>
                        <dep_date>2021-03-18 20:26:56</dep_date>
                        <invoice_id>1</invoice_id>
                        <invoice_name>发票抬头1</invoice_name>
                        <itinerary_id>1</itinerary_id>
                        <project_code>projectx</project_code>
                        <project_title>项目x</project_title>
                        <traffic_type>4</traffic_type>
                    </open_itinerary_info>
                </itinerary_list>
                <status>申请</status>
                <status_desc>0</status_desc>
                <thirdpart_id>apply1</thirdpart_id>
                <trip_cause>杭州出差</trip_cause>
                <trip_title>杭州出差</trip_title>
                <user_id>user1</user_id>
                <user_name>员工1</user_name>
            </open_apply_rs>
        </apply_list>
        <total>10</total>
    </result>
</alitrip_btrip_city_car_apply_query_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>

错误码解释

错误码 错误描述 解决方案

API工具

如何获得此API

FAQ

返回
顶部