PUT
/
sessions
/
release
/
proxies
curl --request PUT \
  --url https://monitor.geonode.com/sessions/release/proxies \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{
  "data": [
    {
      "port": 10001
    }
  ]
}'
{
  "success": true
}

Authorizations

Authorization
string
header
required

Basic authentication using username and password.

Body

application/json
data
object[]

Response

200
application/json
Session released successfully.
success
boolean

Indicates whether the session release was successful.

Example:

true