From 91775b826f6cbfd2943025155ce88545a74bfe65 Mon Sep 17 00:00:00 2001 From: linju Date: Wed, 10 Aug 2022 04:14:37 +0000 Subject: [PATCH] update docs/uniCloud/uni-cloud-push/api.md. --- docs/uniCloud/uni-cloud-push/api.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/uniCloud/uni-cloud-push/api.md b/docs/uniCloud/uni-cloud-push/api.md index 1622d593f..42434bb67 100644 --- a/docs/uniCloud/uni-cloud-push/api.md +++ b/docs/uniCloud/uni-cloud-push/api.md @@ -583,14 +583,14 @@ await uniPush.cidsBindCustomTag(OBJECT) ##### 入参说明 | 名称 | 类型 | 是否必须 | 默认值| 说明 | | ------ | ------ | ------ | ------ | ------ | -| cid | String Array | 是 | 无 | 要修改标签属性的cid列表,数组长度不大于1000 | +| cids | String Array | 是 | 无 | 要修改标签属性的cid列表,数组长度不大于1000 | | custom_tag | String | 是 | 无 | 客户端标签,标签中不能包含空格,单个标签最大长度为32字符,如果含有中文字符需要编码(UrlEncode) | * 参数示例 ```js { - "cid": [ + "cids": [ "xxx" ], "custom_tag": "xxx" @@ -619,13 +619,13 @@ await uniPush.cidsUnboundCustomTag(OBJECT) ##### 入参说明 | 名称 | 类型 | 是否必须 | 默认值| 说明 | | ------ | ------ | ------ | ------ | ------ | -| cid | String Array | 是 | 无 | 要修改标签属性的cid列表,数组长度不大于1000 | +| cids | String Array | 是 | 无 | 要修改标签属性的cid列表,数组长度不大于1000 | | custom_tag | String | 是 | 无 | 客户端标签,标签中不能包含空格,单个标签最大长度为32字符,如果含有中文字符需要编码(UrlEncode) | * 参数示例 ```js { - "cid": [ + "cids": [ "xxx" ], "custom_tag":"xxx" -- GitLab