Skip to content
开发文档
能力中心
应用市场
WebOffice
开发者后台

批量创建授权分配记录

批量创建商品授权分配记录

请求说明

请求地址https://openapi.wps.cn/v7/store/allocations/batch_create
请求方法POST
签名方式KSO-1
权限要求查询和管理租户下的所有商城权益(应用授权) kso.store_allocation.readwrite.all
查询和管理该应用权限下的商城权益(应用授权) kso.store_allocation.readwrite.ownedby

请求头(Header)

Header 名称参数类型是否必填说明
Content-Typestring使用:application/json
X-Kso-DatestringRFC1123 格式的日期,例: Wed, 23 Jan 2013 06:43:08 GMT
X-Kso-AuthorizationstringKSO-1 签名值,详见《签名方法》
Authorizationstring授权凭证,格式为:Bearer {access_token}

请求体(Body)

名称参数类型是否必填说明
entitlement_keystring授权 key
entity_idsarray[string]被分配的对象实体 id 集合
entity_typestring[enum]被分配对象实体类型
user:用户;app:应用;company:企业

请求地址示例

[POST] https://openapi.wps.cn/v7/store/allocations/batch_create

请求体示例

json
{
  "entitlement_key": "string",
  "entity_ids": [
    "string"
  ],
  "entity_type": "string[enum]"
}

响应体

名称参数类型说明
codeinteger响应代码。非 0 表示失败,参照《状态码说明》
msgstring响应信息
dataobject响应数据
∟ idsarray[string]id 集合
moreobject更多的错误信息

响应体示例

json
{
  "code": 0,
  "data": {
    "ids": [
      "string"
    ]
  },
  "msg": "string"
}
回到旧版