1.获取请求token
[/api/opreceive/accessAuth/getAppTokenByAppKey]
请求方式：POST
参数格式 JSON
HTTP请求方式 POST
    {
        "actionType":"getAppTokenByAppKey",//固定写法就行
        "actionBody":{
            "appkey": "2019090811",                     //Y   string   appkey
            "secret": "f99d413b767f09b5dff0b3610366cc46"//Y   string   密钥
        }
    }
返回结果
    {
        "status": 0,
        "msg": "success",
        "data": {
            "token": "40d64e586551405c9bcafab87266bc04" //token用于其他接口请求时，放在请求头中
        },
        "requestId": "2016c54abe7249a2a1195d236b333f79"
    }  


2.查看需求方案列表信息
地址：[/#/needProxy?needNo=XXX&userId=jfklajflsjfs&nickName=松XXX&mobile=15010929368&orgName=汉唐集团&token=XXXXX]
请求方式：GET     
参数说明：
  参数说明：
	  needNo//需求号
	  userId//用户唯一码
	  nickName//用户名称
	  mobile//用户手机号	
	  orgName//公司名称  
      token//token值  

3.推送公司表单材料
地址：[/api/opreceive/ic/springBoard]
请求方式：POST
请求头中需要有token（token值从接口1中获取）   
{
     "actionType": "deliveryInfo", // 办理公司表单数据
     "actionBody":    {
          "serviceNo":"xxxxxxxxx",// Y 你那边订单号	
          .
          .//为你那边的数据
          .
     }
}   
返回结果
    {
        "status": 0,//0成功，否则失败
        "msg": "success",
        "data": null,
        "requestId": "2016c54abe7249a2a1195d236b333f79"
    }     

4.推送公司状态
地址：[/api/opreceive/ic/springBoard]
请求方式：POST
请求头中需要有token（token值从接口1中获取）      
{
     "actionType": "deliveryStatus", // 办理公司状态
     "actionBody":    {
          "serviceNo":"xxxxxxxxx",// Y 你那边订单号	
          .
          .//为你那边的数据
          .
     }
} 
返回结果
    {
        "status": 0,//0成功，否则失败
        "msg": "success",
        "data": null,
        "requestId": "2016c54abe7249a2a1195d236b333f79"
    }      

5.关闭需求接口
地址：[/api/opreceive/need/springBoard]
请求方式：POST
请求头中需要有token（token值从接口1中获取）      
{
     "actionType": "needClose", // 关闭需求
     "actionBody":    {
         "needNo":"xxxxxxxxx"//需求号	
     }
}    
返回结果
    {
        "status": 0,//0成功，否则失败
        "msg": "success",
        "data": null,
        "requestId": "2016c54abe7249a2a1195d236b333f79"
    }      


6.商标报告
地址：[/api/action/tmQuery/springBoard]
请求方式：POST
请求头中需要有token（token值从接口1中获取）      
{
    "actionType":"tmreport",
    "actionBody":
    {
        "companyname":"",  //公司名称
        "phonenum":"",　　//电话  非必添
        "email":"",　　　//邮箱
    }
} 
返回结果
    {
        "status": 0,//0成功，否则失败
        "msg": "success",
        "data": null,
        "requestId": "2016c54abe7249a2a1195d236b333f79"
    }      