Class: Vonage::Meetings::Recordings

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

Instance Method Summary collapse

Instance Method Details

#delete(recording_id:) ⇒ Response

Delete a specified recording.

Parameters:

  • recording_id (required, String)

    The id of the recoring to be deleted

Returns:

See Also:



32
33
34
# File 'lib/vonage/meetings/recordings.rb', line 32

def delete(recording_id:)
  request("/v1/meetings/recordings/" + recording_id, type: Delete)
end

#info(recording_id:) ⇒ Response

Return information for specified recording.

Parameters:

  • recording_id (required, String)

    The id of the recoring for which the info should be returned

Returns:

See Also:



21
22
23
# File 'lib/vonage/meetings/recordings.rb', line 21

def info(recording_id:)
  request("/v1/meetings/recordings/" + recording_id)
end