Class: Vonage::Meetings::Sessions

Inherits:
Namespace
  • Object
show all
Extended by:
T::Sig
Defined in:
lib/vonage/meetings/sessions.rb

Defined Under Namespace

Classes: ListResponse

Instance Method Summary collapse

Instance Method Details

#list_recordings(session_id:) ⇒ ListResponse

Deprecated.

Return a list of recordings for a specified session.

Parameters:

  • session_id (required, String)

    The id of the session for which the recordings list should be returned

Returns:

See Also:



23
24
25
26
27
28
29
# File 'lib/vonage/meetings/sessions.rb', line 23

def list_recordings(session_id:)
  logger.info('This method is deprecated and will be removed in a future release.')
  request(
    "/v1/meetings/sessions/" + session_id + "/recordings",
    response_class: ListResponse
  )
end