put https://monitor.geonode.com/sessions/release/RESIDENTIAL-PREMIUM
This endpoint allows you to release sticky sessions for multiple ports in a single request.
Example Request:
curl \
--location \
--request PUT \
'https://monitor.geonode.com/sessions/release/RESIDENTIAL-PREMIUM' \
--header 'Content-Type: application/json' \
--user \
geonode_username:password \
--data '{
"data": [
{ "port": 10000 },
{ "port": 10001 },
{ "port": 10002 }
]
}'
Example Use Case:
If you have sticky sessions running on multiple ports (10000
, 10001
, and 10002
),
this API allows you to release them in a single request.