Proxy Server Management
Reboot modems and refresh IP addresses for your proxy servers.
Reboot Modem
Restart a ProxySmart modem.
Rate Limit
Maximum 1 request per 5 minutes per user.
Endpoint
POST /proxies/user-proxy-server/reboot/
Request
curl -X 'POST' \
'https://app.cyberyozh.com/api/v1/proxies/user-proxy-server/reboot/' \
-H 'accept: application/json' \
-H 'X-Api-Key: your_api_key_here' \
-H 'Content-Type: application/json' \
-d '{
"id": "9a440c2a-157f-4562-8209-25022ec4143a"
}'
Request Body
| Field | Type | Required | Description |
|---|---|---|---|
id | string (UUID) | Yes | Proxy server identifier |
Response Codes
| Code | Description |
|---|---|
| 200 | Modem successfully rebooted |
| 400 | Invalid parameters |
| 403 | Access denied |
| 404 | Proxy not found or IMEI missing |
| 429 | Rate limit exceeded (max 1 per 5 minutes) |
| 500 | Modem reboot failed |
Refresh IP Address
Change the public IP address for a proxy server.
Rate Limit
Maximum 1 request per minute per user.
Endpoint
POST /proxies/user-proxy-server/refresh-ip/
Request
curl -X 'POST' \
'https://app.cyberyozh.com/api/v1/proxies/user-proxy-server/refresh-ip/' \
-H 'accept: application/json' \
-H 'X-Api-Key: your_api_key_here' \
-H 'Content-Type: application/json' \
-d '{
"id": "9a440c2a-157f-4562-8209-25022ec4143a"
}'
Request Body
| Field | Type | Required | Description |
|---|---|---|---|
id | string (UUID) | Yes | Proxy server identifier |
Response Codes
| Code | Description |
|---|---|
| 200 | IP address successfully changed |
| 400 | Invalid parameters |
| 403 | Access denied |
| 404 | Proxy not found or operation unavailable |
| 429 | Rate limit exceeded (max 1 per minute) |