##查询企业维度用车规则

企业维度查询全部用车规则

请求地址: /v2/common/listByCompanyId

服务协议: HTTP/POST

Content-Type: application/x-www-form-urlencoded

请求参数:

参数名称 类型 必选 说明
client_id string Y 申请的client_id
timestamp long Y 时间戳
sign string Y 签名

响应data参数:

参数名称 类型 必有 说明
id Long Y 规则id
name string Y 规则名称
situationId Long Y 场景id
situationName string Y 场景名称

结果示例:

{
  "code": 200,
  "message": "成功",
  "data": [
    {
      "id": 1, 
      "name": "下班用车",
      "situationId": 1,   
      "situationName": "下班场景"
    }
  ]
}