- 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
Auto rotation :: Retrieve scheduled rotation jobs
POST
{{BASE_URL}}/v2/schedule/rotation_jobs
Request
Body Params application/json
positions
array[integer]
optional
Example:
[1]
page
integer
optional
Example:
1
limit
integer
optional
Example:
5
Example
{
"positions": [
1
],
"page": 1,
"limit": 5
}
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/schedule/rotation_jobs' \
--header 'Content-Type: application/json' \
--data-raw '{
"positions": [
1
],
"page": 1,
"limit": 5
}'
Responses
🟢200OK
application/json
Body
status
boolean
optional
Example:
true
data
object
optional
data
array [object {11}]
optional
total
integer
optional
Example:
2
Example
{
"status": true,
"data": {
"data": [
{
"id": 3,
"position": 1,
"interval": 5,
"unit": "minutes",
"specific_time": "00:00",
"start_time": null,
"end_time": null,
"enabled": 1,
"stamp_created": 1741690306,
"type": "system",
"next_run": 1741690800
}
],
"total": 2
}
}
🟠400Bad Request
🔴500Server Error
Modified at 2025-04-23 02:56:43