简要描述:

  • 新增司机信息

接口版本:

版本号 制定人 制定日期 修订日期
2.0.0 lenny 2026-03-02

请求URL:

请求方式:

  • POST

请求头:

参数名 是否必须 类型 说明
Content-Type string 请求类型: application/json

请求参数:

参数名 是否必须 类型 说明
FTokenID string 令牌ID
FAction string 方法名 (AddAdminDriver)
FT_AdminDriverParam Object {“FDriverName”:司机名称,”FLicenseNumber”:驾驶证编号,”FDriverPhone”:司机电话,”FIDNumber”:司机身份证号,”FDescription”:描述,”FCountryResidenc”:城市,”FDistrictRegion”:城镇,”FAgentGUID”:公司唯一标识,”FHeadPortrait”:”头像Base64图片”,”FDrivingLicenseFront”:”驾驶证正面照Base64图片”,”FDrivingLicenseBack”:”驾驶证反面照Base64图片”}
FT_AdminDriverParam 对象说明:
参数名 是否必须 类型 说明
FDriverName string 司机名称
FLicenseNumber string 司机电话
FDriverPhone string 路线名称
FIDNumber string 司机身份证号
FDescription string 描述
FCountryResidenc string 城市
FDistrictRegion string 城镇
FHeadPortrait string 头像Base64图片
FDrivingLicenseFront string 驾驶证正面照Base64图片
FDrivingLicenseBack string FDrivingLicenseBack
FAgentGUID string 公司唯一标识,该字段不传,则默认为当前用户所在公司

返回示例:

正确时返回:

{
    "Result": 200,
    "Message": "check token success",
    "FObject": []
}

错误时返回:

{
    "Result": 102,
    "Message": "Action is error",
    "FObject": []
}

返回参数说明:

参数名 类型 说明

备注:

  • 更多返回错误代码如下:
  • 104:token错误或过期
  • 105:系统异常
  • 102:请求参数错误

请求示例:

Java:

String result = "";
//请求路径
String url = "https://cloud.assetscontrols.com:3443/OpenApi/Admin";  
//请求参数 ,json格式参数,建议用对象传入
String body = "{\"FAction\":\"AddAdminDriver\",\"FTokenID\":\"3acef045-d302-4032-b40a-d9ee6c1519cd\", \"FT_AdminDriverParam\":{ \"FDriverName\":\"12321\",  \"FLicenseNumber\":\"12321333\",        \"FDrivingType\":\"C\", \"FDriverPhone\":\"5481166\",  \"FDescription\":\"ddb\",        \"FIDNumber\":\"323432543543\", \"FCountryResidenc\":\"322\",  \"FDistrictRegion\":\"211\",        \"FHeadPortrait\":\"\", \"FDrivingLicenseFront\":\"\",  \"FDrivingLicenseBack\":\"\"}}";  
URL realUrl = new URL(url);
// 设置通用请求的属性
URLConnection conn = realUrl.openConnection(); 
conn.setRequestProperty("accept", "*/*");
conn.setRequestProperty("connection", "keep-Alive");
conn.setRequestProperty("Content-Type", "application/json");
conn.setRequestProperty("user-agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;SV1)");
conn.setRequestProperty("method", "post");
// 发送POST请求必须设置如下两行
conn.setDoOutput(true);
conn.setDoInput(true);
PrintWriter pw = new PrintWriter(conn.getOutputStream());
// 发送请求参数
pw.print(body);
// flush输出流的缓冲  
pw.flush();   
// 定义BufferedReader输入流来读取URL的响应
BufferedReader bufReader = new BufferedReader(new InputStreamReader(conn.getInputStream()));  
// 定义BufferedReader输入流来读取URL的响应
String line;
while ((line = bufReader.readLine()) != null) {
     result += line;        
 }
//返回的是json字符串
return result;

C#:

//请求路径
string url = "https://cloud.assetscontrols.com:3443/OpenApi/Admin";  
//请求参数 ,json格式参数,建议用对象传入
string body = "{\"FAction\":\"AddAdminDriver\",\"FTokenID\":\"3acef045-d302-4032-b40a-d9ee6c1519cd\", \"FT_AdminDriverParam\":{ \"FDriverName\":\"12321\",  \"FLicenseNumber\":\"12321333\",        \"FDrivingType\":\"C\", \"FDriverPhone\":\"5481166\",  \"FDescription\":\"ddb\",        \"FIDNumber\":\"323432543543\", \"FCountryResidenc\":\"322\",  \"FDistrictRegion\":\"211\",        \"FHeadPortrait\":\"\", \"FDrivingLicenseFront\":\"\",  \"FDrivingLicenseBack\":\"\"}}"; 
Encoding encoding = Encoding.UTF8;
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
 //请求方式 post / get
request.Method = "post"; 
request.Accept = "*/*";    
request.ContentType = "application/json";
request.UserAgent = "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)";
byte[] buffer = encoding.GetBytes(body);
request.ContentLength = buffer.Length;
request.GetRequestStream().Write(buffer, 0, buffer.Length);
HttpWebResponse response = (HttpWebResponse)request.GetResponse();
using (StreamReader reader = new StreamReader(response.GetResponseStream(), Encoding.UTF8))
{
    //返回的是json字符串
    return reader.ReadToEnd();
}

Python:

url = 'https://cloud.assetscontrols.com:3443/OpenApi/Admin'
      data = {
      'FAction': 'AddAdminDriver',
      'FTokenID': '3acef045-d302-4032-b40a-d9ee6c1519cd',
      'FT_AdminDriverParam': '{
        'FDriverName':'12321',
        'FLicenseNumber':'12321333',
        'FDrivingType':'C',
        'FDriverPhone':'5481166',
        'FDescription':'ddb',
        'FIDNumber':'323432543543',
        'FCountryResidenc':'322',
        'FDistrictRegion':'211',
        'FHeadPortrait':'',
        'FDrivingLicenseFront':'',
        'FDrivingLicenseBack':''
    }'
       }
      data = parse.urlencode(data).encode('utf-8')
      headers = {
       'User-Agent': r'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) '
                     r'Chrome/45.0.2454.85 Safari/537.36 115Browser/6.0.3',
       'Connection': 'keep-alive'
       }
      req = request.Request(url, headers=headers, data=data)  
      page = request.urlopen(req).read()
      page = page.decode('utf-8')
      # json_array = json.loads(page)
      return page;
文档更新时间: 2026-03-02 14:55   作者:刘家帅