put https://monitor.geonode.com/sessions/release/
Release sticky sessions for a specified Geonode service by session ID and port.
📝 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": [
{"sessionId": "random0001", "port": 10000}
]
}'
🛠 Example Use Case
Imagine you have a sticky session running on port 10000
with session ID random0001
. You can call this API to release that session.
Example JSON request:
{
"data": [
{ "sessionId": "random0001", "port": 10000 }
]
}