Release Proxy Session by Multiple Port
This endpoint allows you to release sticky sessions for multiple ports in a single request.
Release sticky sessions running on multiple ports in a single request. This is useful when you need to free several proxy connections at once.
Request
curl -X PUT "https://monitor.geonode.com/sessions/release/proxies" \
-H "Authorization: Basic base64(username:password)" \
-H "Content-Type: application/json" \
-d '{"data":[{"port":10000},{"port":10001},{"port":10002}]}'Request Body Parameters
| Field | Type | Required | Description |
|---|---|---|---|
data | array | Yes | Array containing session details |
data[].port | integer | Yes | Port number of each proxy session to release |
Example Request Body
{
"data": [{ "port": 10000 }, { "port": 10001 }, { "port": 10002 }]
}Response
200 Success
Successfully released the specified ports.
Response Fields
| Field | Type | Description |
|---|---|---|
success | boolean | Indicates whether the session release was successful |
Example Response
{
"success": true
}