Write SMS to Cloud Phone. Note: This operation is only available for cloud phones running Android 15 and Android 12(Region A).
POST /api/v1/cloudNumber/imageWriteSms
| Parameter | Type | Required | Description |
|---|---|---|---|
| image_id | array | Yes | Cloud Phone ID, can be obtained from the cloud phone list. This operation is only available for cloud phones running Android 15 and Android 12(Region A) |
| sms | array | Yes | SMS Content |
| Parameter | Type | Required | Description |
|---|---|---|---|
| phone | string | Yes | Sender Number |
| message | string | Yes | SMS Content |
{
"image_id": "xxx",
"sms": [
{
"phone": "xxxxxxxx",
"message": "xxxxxxxx"
},
{
"phone": "xxxxxxxx",
"message": "xxxxxxxx"
}
]
}
{
"code": 200,
"data": {
"message": "success"
},
"message": "success"
}