Method: Vonage::Meetings::Themes#delete

Defined in:
lib/vonage/meetings/themes.rb

#delete(theme_id:, force: false) ⇒ Response

Deprecated.

Delete an existing theme.

a default theme. (Defaults to false)

Parameters:

  • :theme_id (required, String)

    The id of the theme to be deleted

  • :force. (optional, Boolean)

    Set to true to force delete a theme currently being used for a room, or as

Returns:

See Also:



112
113
114
115
116
117
118
# File 'lib/vonage/meetings/themes.rb', line 112

def delete(theme_id:, force: false)
  logger.info('This method is deprecated and will be removed in a future release.')
  request(
    "/v1/meetings/themes/" + theme_id + "?force=#{force}",
    type: Delete
  )
end