{
"ids": [
41
],
"command": {
"type":"SEND_NOTIFICATION",
"expiryTime": 3000,
"sendNotificationParams":{
"title": "321321",
"message":"321321",
"fullscreen":true
}
}
}
curl --location --request POST '/devices/command' \
--header 'Authorization: Bearer {{token}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"ids": [
41
],
"command": {
"type":"SEND_NOTIFICATION",
"expiryTime": 3000,
"sendNotificationParams":{
"title": "321321",
"message":"321321",
"fullscreen":true
}
}
}'
{
"code": 200,
"message": "命令已发送",
"data": {
"totalCount": 0,
"successCount": 0,
"failedCount": 0,
"failedItems": [
{
"id": 0,
"reason": "string"
}
]
}
}