更新账号属性
PATCH
/im/v2/accounts/{account_id}
请求参数
Path 参数
account_id
string
必需
示例值:
apifoxtest200
Header 参数
AppKey
string
必需
默认值:
{{AppKey}}
X-custom-traceid
string
可选
默认值:
{% mock 'uuid' %}
Nonce
string
必需
默认值:
{{Nonce}}
CurTime
string
必需
默认值:
{{CurTime}}
CheckSum
string
必需
默认值:
{{CheckSum}}
Body 参数application/json
token
string
账号登陆密钥
<= 128 字符
configuration
object
账户配置项
enabled
boolean
账号禁用标记
默认值:
true
p2p_chat_banned
boolean
单聊禁言标记
默认值:
false
team_chat_banned
boolean
群聊禁言标记
默认值:
false
chatroom_chat_banned
boolean
聊天室禁言标记
默认值:
false
qchat_chat_banned
boolean
圈组禁言标记
默认值:
false
push_enabled_when_desktop_online
boolean
桌面端在线时是否关闭移动端推送
默认值:
false
need_kick
boolean
强制退出标记
默认值:
false
kick_notify_extension
string
强制退出扩展
<= 256 字符
account_id
string
账号Id
示例
{
"token": "apifoxtest200"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request PATCH 'https://open.yunxinapi.com/im/v2/accounts/apifoxtest200' \
--header 'AppKey;' \
--header 'X-custom-traceid: {% mock '\''uuid'\'' %}' \
--header 'Nonce;' \
--header 'CurTime;' \
--header 'CheckSum;' \
--header 'Content-Type: application/json' \
--data-raw '{
"token": "apifoxtest200"
}'
返回响应
🟢200成功
application/json
Body
code
integer
状态码
msg
string
提示信息
data
object
返回的JSON数据对象
account_id
string
账号Id
>= 1 字符<= 32 字符
token
string
账号登陆密钥
<= 128 字符
configuration
object
账户配置项
示例
{
"code": 200,
"msg": "success",
"data": {
"account_id": "123456",
"configuration": {
"enabled": false,
"p2p_chat_banned": false,
"team_chat_banned": false,
"chatroom_chat_banned": false,
"qchat_chat_banned": false,
"push_enabled_when_desktop_online": true
}
}
}
🟢200请求参数错误
🟢200服务器错误
修改于 2024-12-25 08:33:52