- 采集器
- 任务
- 数据
- 数据接口
- 账号池
- 代理配置
- git
- 数据接口
- 用户
更新账号信息
测试中
PUT
https://api.beeize.com/v1/accounts_pool/{id}
请求参数
Path 参数
id
string
账号 Id
Body 参数application/json
serviceId
string
必需
accountTypeId
integer
必需
account
string
必需
email
string
必需
password
string
必需
cookie
string
必需
accountStatus
string
必需
cookieStatus
string
必需
示例
{
"account_type_name": "推特",
"account_type_id": "123456",
"account": "zhangsan",
"email": "zhangsan@qq.com",
"password": "zhangsan@qq.com",
"cookie": "",
"account_status": 1,
"type": "string"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request PUT 'https://api.beeize.com/v1/accounts_pool/' \
--header 'Content-Type: application/json' \
--data-raw '{
"account_type_name": "推特",
"account_type_id": "123456",
"account": "zhangsan",
"email": "zhangsan@qq.com",
"password": "zhangsan@qq.com",
"cookie": "",
"account_status": 1,
"type": "string"
}'
返回响应
🟢200成功
application/json
Body
object {0}
示例
{
"code": 0,
"msg": "",
"data": {
"id": "6",
"serviceId": "qm5ynbclhmcrgpgo0",
"accountTypeId": 1,
"account": "zhangsna",
"email": "zhangsna@qq.com",
"password": "zhangsna@qq.com",
"cookie": "_11111",
"accountStatus": "ENABLE",
"cookieStatus": "IDLE",
"createAt": "2024-11-01 10:19:29",
"updateAt": "2024-11-01 10:39:00"
}
}
修改于 2024-11-01 02:40:56