电商类

    eb_iteminvcontrapose/add


    目录

    1.接口说明

    1.1接口描述

         新增一个店铺商品

    1.2适用版本

         支持U8V12.0 及更高版本

    2.使用场景

    电商集成

    3.接口调用说明

    3.1请求说明

    url https://api.yonyouup.com/api/eb_iteminvcontrapose/add
    格式 JSON
    https请求方式 POST
    编码类型 UTF-8


    3.2url参数说明

    参数 类型 是否必填 描述
    from_account string 调用方id
    to_account string 提供方id
    app_key string 应用编码
    token string api调用唯一识别码
    tradeid string 交易唯一识别码,tradeid与biz_id只能传入一个
    ds_sequence number 数据源序号(默认取应用的第一个数据源)
    biz_id string 上游id,需要保证biz_id与ERP主键唯一对应关系,tradeid与biz_id只能传入一个
    sync number 0=异步新增(默认);1=同步新增;


    3.3请求体参数说明

    参数 类型 参数路径 是否必填 描述
    cShopCode string entry 店铺编码
    cShopName string entry 店铺名称
    cEBItemCode string entry 店铺商品编码
    cEBItemName string entry 店铺商品名称
    cEBSKUID string entry 店铺商品SKU
    cEBItemMemo string entry 店铺商品描述
    cOutIID string entry 商家编码
    cOutSKUID string entry 商家SKU

    3.4请求示例

    POST https://api.yonyouup.com/api/eb_iteminvcontrapose/add?from_account=openapi_dev&to_account=openapi_ent&app_key=opa6fdd4bea98b95ad7&token=843d03f66e6544e19707ccec11030296&ds_sequence=1
    
    POST 内容:
    {
    	"eb_iteminvcontrapose":{
    		"cShopCode":"01",
    		"cShopName":"淘宝",
    		"cEBItemCode":"39890984132",
    		"cEBItemName":"电子书",
    		"cEBSKUID":"59459602408",
    		"cOutSKUID":"11010612"
    	}
    }
    


    3.5返回参数说明

    参数说明 类型 描述
    errcode string 错误码,0 为正常。
    errmsg string 错误信息。
    id string
    tradeid string 新增成功后返回交易唯一识别码

    3.6正确返回示例

    JSON示例:

    {
        "tradeid": "158f3f05730711e591c702004c4f4f50",
        "ping_after": "3",
        "url": "https://api.yonyouup.com/result?requestid=158f3f05730711e591c702004c4f4f50"
    }
    上述 api 请求返回信息表示建议客户端 3 秒钟后向 https://api.yonyouup.com/result?requestid=158f3f05730711e591c702004c4f4f50 发送 GET 请求获取真正的 api 调用结果,结果格式如下:
    {
      "errcode" : "0", 
      "errmsg" : "", 
      "id" : "883",
      "tradeid" : "158f3f05730711e591c702004c4f4f50"
    }  
    

    3.7错误返回示例

    application/json;charset=UTF-8
    {
    	"errcode" : "30021",
    	"errmsg" : "此应用未上线"
    } 

    4.API测试

    API测试 SDK下载