-
-
名称 |
类型 |
必须 |
描述 |
$app |
String |
否 |
应用的app_key |
$method |
String |
是 |
API接口名称 |
$sign |
String |
是 |
签名 |
$token |
String |
是 |
采用OAuth授权方式为必填参数 |
$v |
String |
是 |
API协议版本,可选值:1.0.0 |
-
名称 |
类型 |
必须 |
示例值 |
描述 |
sku |
String |
否
|
8000006468 |
商城商品编码(商城商品编码和商品外部商家编号至少一个不能为空) |
outId |
String |
否
|
10000 |
商品外部商家编号 (商城商品编码和商品外部商家编号至少一个不能为空) |
areaCode |
String |
否
|
10000 |
区域Code(二级区域之间用逗隔开,组之间用英文分号隔开) |
startDate |
String |
否
|
2016-03-25 10:10 |
开始日期(多个开始日期用英文分号隔开)(yyyy-MM-dd) |
endDate |
String |
否
|
2016-03-25 10:10 |
截止日期(多个截止日期用英文分号隔开)(yyyy-MM-dd) |
price |
String |
否
|
1000 |
区域价格(多个价格用英文分号隔开) |
count |
int |
否
|
1 |
代表sku或者outId的数量 |
-
Java
GmosClient client = new DefaultGmosClient(url, appKey, secret, token);
GomeGoodsItemAreaPriceUpdateRequest request = new GomeGoodsItemAreaPriceUpdateRequest();
//详细参数信息请参考API详情页面。
request.setSku("8000006468");
request.setOutId("10000");
request.setAreaCode("10000");
request.setStartDate("2016-03-25 10:10");
request.setEndDate("2016-03-25 10:10");
request.setPrice("1000");
request.setCount(1);
GomeGoodsItemAreaPriceUpdateResponse response = client.execute(request);
System.out.println(response.getBody());
PHP
require_once('GmosSdk.php');
$client = new GmosClient;
$client -> appkey = "";
$client -> secretKey = "";
$client -> session = "";
$client -> gatewayUrl = "";
$request = new GomeGoodsItemAreaPriceUpdateRequest;
//详细参数信息请参考API详情页面。
$request -> setSku("8000006468");
$request -> setOutId("10000");
$request -> setAreaCode("10000");
$request -> setStartDate("2016-03-25 10:10");
$request -> setEndDate("2016-03-25 10:10");
$request -> setPrice("1000");
$request -> setCount(1);
$response = $client -> execute($request);
Net
IGmosClient client = new DefaultGmosClient(url, appKey, secret, token);
GomeGoodsItemAreaPriceUpdateRequest request = new GomeGoodsItemAreaPriceUpdateRequest();
request.Sku="8000006468";
request.OutId="10000";
request.AreaCode="10000";
request.StartDate="2016-03-25 10:10";
request.EndDate="2016-03-25 10:10";
request.Price="1000";
request.Count=1;
GomeGoodsItemAreaPriceUpdateResponse response = client.Execute(request);
-
注:名称栏的缩进表示类型的关联,单击可以隐藏当前类型包含的字段
-
JSON
-
-
错误码 |
错误消息 |
10001 |
系统错误 |
10002 |
方法调用次数超限 |
10003 |
当前版本的方法不存在,请检查 |
10004 |
缺少版本参数,请指定服务方法的版本号 |
10005 |
该应用在当前IP下禁止访问 |
8224 |
缺少签名参数,请添加签名请求参数 |
8999 |
存在重复的请求,请在90秒之后再请求第二次 |
8225 |
签名无效,请按正确的算法对请求数据进行签名 |
9000 |
字段%s不能为空 |
8249 |
超过上传限制 |
8223 |
无效的appKey,请使用合法的appKey(由服务提供商授予你) |
8239 |
需要传递accessToken参数 |
8222 |
缺少appKey,请向服务端获取合法的appKey |
20001 |
令牌已过期 |
-