> ## Documentation Index
> Fetch the complete documentation index at: https://geonode.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Release Proxy Session by Multiple Port

> This endpoint allows you to release sticky sessions for multiple ports in a single request.

## 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.




## OpenAPI

````yaml api-reference/ref/session-release-by-multiple-ports.yaml put /sessions/release/proxies
openapi: 3.0.3
info:
  version: 1.0.0
  title: Geonode Proxy Sticky Session Release API - By Multiple Ports
  description: >-
    API for releasing sticky sessions by multiple ports in Geonode's proxy
    service.
servers:
  - url: https://monitor.geonode.com
    description: Geonode Monitoring API
security:
  - BasicAuth: []
paths:
  /sessions/release/proxies:
    put:
      summary: Release Sticky Sessions by Multiple Ports
      description: >
        This endpoint allows you to release sticky sessions for multiple ports
        in a single request.


        ## 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.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                data:
                  type: array
                  items:
                    type: object
                    properties:
                      port:
                        type: integer
                        description: Port number to release.
                        example: 10000
      responses:
        '200':
          description: Successfully released the specified ports.
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    description: Indicates whether the session release was successful.
                    example: true
        '400':
          description: Bad request due to invalid parameters.
        '407':
          description: Unauthorized access due to invalid credentials.
        '500':
          description: Internal server error.
components:
  securitySchemes:
    BasicAuth:
      type: http
      scheme: basic
      description: Basic authentication using username and password.

````