def deleteSession(connection, sessionUrl): ''' This method is used to delete an existing session. Args: - connection is the connection object that manages the HTTP data transfers between the client and the REST API - sessionUrl is the address of the seession to delete ''' deleteParams = {} performGenericDelete(connection, sessionUrl, deleteParams)