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

> This API allows users to release a specific proxy session by providing a port number.




## OpenAPI

````yaml api-reference/ref/session-release-by-port.yaml put /sessions/release/proxies
openapi: 3.0.3
info:
  title: Geonode Release Session by Port API
  description: >-
    API for releasing proxy sessions by specifying a port in Geonode's proxy
    service.
  version: 1.0.0
servers:
  - url: https://monitor.geonode.com
security: []
paths:
  /sessions/release/proxies:
    put:
      summary: Release Proxy Session by Port
      description: >
        This API allows users to release a specific proxy session by providing a
        port number.
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                data:
                  type: array
                  items:
                    type: object
                    properties:
                      port:
                        type: integer
                        example: 10001
      responses:
        '200':
          description: Session released successfully.
          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.
      security:
        - BasicAuth: []
components:
  securitySchemes:
    BasicAuth:
      type: http
      scheme: basic
      description: Basic authentication using username and password.

````