{
"user_id": [
1,
2,
3
],
"title": "消息标题",
"body": "消息内容",
"args": {
"k1": "v1",
"k2": "v2"
}
}
curl --location --request POST '/v2/push/users' \
--header 'X-Tg-App-Id;' \
--header 'Accept-Language;' \
--header 'Authorization;' \
--header 'X-Tg-Signed-Headers;' \
--header 'X-Tg-Date;' \
--header 'X-Tg-Content-Sha256;' \
--header 'X-Tg-Algorithm;' \
--header 'Content-Length;' \
--header 'Content-Type: application/json' \
--data-raw '{
"user_id": [
1,
2,
3
],
"title": "消息标题",
"body": "消息内容",
"args": {
"k1": "v1",
"k2": "v2"
}
}'
{
"code": 200,
"msg": "success",
"ok": 1,
"requestid": "4c091e7c-6a8d-43cc-87bb-8f0388420c6c",
"status": "success",
"data": {
"4155264": {
"ok": true,
"msg": ""
}
}
}