简要描述:

  • API公共参数说明

请求域名:

  • 具体域名请联系实施人员获取。

1.1 WSDL地址(如果用soap方法做对接,就用这个地址) 正式线:http://xxx.xxx.xxx/default/svc/wsdl
1.2 service地址(如果用curl方法做对接,就用这个地址,该地址支持postman请求) 正式线:http://xxx.xxx.xxx/default/svc/web-service

请求公共参数:

参数名 类型 必填项 说明
appToken string API账号 登陆网站获取
appKey string API密码 登陆网站获取
service string 接口方法,参考接口方法列表
paramsJson string 请求的数据内容,json格式,具体内容可看对应的示例

response公共参数:

参数名 类型 必填项 说明
ask string 响应标志,Success表示成功,Failure表示失败
message string 消息提示
Error object 错误信息

Error格式:

参数名 类型 必填项 说明
errMessage string 错误信息内容
errCode string 错误码

pagination格式:

参数名 类型 必填项 说明
pageSize string 分页大小
page string 当前页

请求报文示例(JSON请参考具体方法里面的JSON示例):

请求XML:

<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.example.org/Ec/">
	<SOAP-ENV:Body>
		<ns1:callService>			
			<paramsJson>{json}</paramsJson>
			<appToken>appToken</appToken>
			<appKey>appKey</appKey>
			<service>{service}</service>
		</ns1:callService>
	</SOAP-ENV:Body>
</SOAP-ENV:Envelope>


响应报文示例(JSON请参考具体方法里面的JSON示例):

响应XML:

<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.example.org/Ec/">
	<SOAP-ENV:Body>
		<ns1:callServiceResponse>			
		<response>{json}</response>
		</ns1:callServiceResponse>
	</SOAP-ENV:Body>
</SOAP-ENV:Envelope>

转义字符

如果JSON里面有"<"和"&",请转义成对应的XML实体。