- API document for XProxy service
- Proxy Management
- Device Management
- Change IMEI for multiple donglesPOST
- Add or change device notePOST
- Change MAC address for donglesPOST
- Change APN for donglesPOST
- Change device labelPOST
- Connect dongle to networkPOST
- Enable/disable WiFi for multiple donglesPOST
- Disconnect dongle from networkPOST
- Reboot a specific donglePOST
- Reset bus donglePOST
- Get dongle information including phone numberPOST
- Set MTU value for a donglePOST
- Rotation (Change IP)
- Selling Platform
- SMS & USSD Utitlies
- System Management
Add or change device note
POST
{{BASE_URL}}/v2/change_device_note
Device
Request
Body Params application/json
position
integer
required
Example:
1
note
string
required
Example:
Personal dongle - Do not reset
Example
{
"position": 1,
"note": "Personal dongle - Do not reset"
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request POST 'http://localhost/v2/change_device_note' \
--header 'Content-Type: application/json' \
--data-raw '{
"position": 1,
"note": "Personal dongle - Do not reset"
}'
Responses
🟢200OK
application/json
Body
status
boolean
optional
Example:
true
msg
string
optional
Example:
Change device note of device successfully!
Example
{
"status": true,
"msg": "Change device note of device successfully!"
}
🟠400Bad Request
🟠401Unauthorized
🟠403Forbidden
Modified at 2025-04-23 02:51:33