渠道管理/账号分组
调整账号排序
接口说明:更新指定分组内的账号排序。
groupId 必须是现有分组 ID,list[n].id 必须是该分组下的账号 ID;list 为必填且至少包含一个账号。分组与账号不匹配时会返回 12600。
PATCH
/
api
/
v2
/
channels
/
account-groups
/
{groupId}
/
accounts
/
rank
调整账号排序
curl --request PATCH \
--url https://aitoearn.cn/api/v2/channels/account-groups/{groupId}/accounts/rank \
--header 'Content-Type: application/json' \
--header 'X-Api-Key: <api-key>' \
--data '
{
"list": [
{
"id": "account-id-in-group",
"rank": 1
}
]
}
'import requests
url = "https://aitoearn.cn/api/v2/channels/account-groups/{groupId}/accounts/rank"
payload = { "list": [
{
"id": "account-id-in-group",
"rank": 1
}
] }
headers = {
"X-Api-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {'X-Api-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({list: [{id: 'account-id-in-group', rank: 1}]})
};
fetch('https://aitoearn.cn/api/v2/channels/account-groups/{groupId}/accounts/rank', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://aitoearn.cn/api/v2/channels/account-groups/{groupId}/accounts/rank"
payload := strings.NewReader("{\n \"list\": [\n {\n \"id\": \"account-id-in-group\",\n \"rank\": 1\n }\n ]\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("X-Api-Key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"data": "boolean",
"code": 0,
"message": "请求成功",
"requestId": "string"
}授权
需要从 AiToEarn 获取 API Key。点击前往「API Key 获取教程」。
路径参数
分组 ID
示例:
"group-id-from-create-response"
请求体
application/json
最后修改于 2026年7月31日
⌘I
调整账号排序
curl --request PATCH \
--url https://aitoearn.cn/api/v2/channels/account-groups/{groupId}/accounts/rank \
--header 'Content-Type: application/json' \
--header 'X-Api-Key: <api-key>' \
--data '
{
"list": [
{
"id": "account-id-in-group",
"rank": 1
}
]
}
'import requests
url = "https://aitoearn.cn/api/v2/channels/account-groups/{groupId}/accounts/rank"
payload = { "list": [
{
"id": "account-id-in-group",
"rank": 1
}
] }
headers = {
"X-Api-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {'X-Api-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({list: [{id: 'account-id-in-group', rank: 1}]})
};
fetch('https://aitoearn.cn/api/v2/channels/account-groups/{groupId}/accounts/rank', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://aitoearn.cn/api/v2/channels/account-groups/{groupId}/accounts/rank"
payload := strings.NewReader("{\n \"list\": [\n {\n \"id\": \"account-id-in-group\",\n \"rank\": 1\n }\n ]\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("X-Api-Key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"data": "boolean",
"code": 0,
"message": "请求成功",
"requestId": "string"
}
