Method: Vonage::Verify2::Templates#delete

Defined in:
lib/vonage/verify2/templates.rb

#delete(template_id:) ⇒ Response

Delete a template.

Examples:

client.verify2.templates.delete(template_id: '8f35a1a7-eb2f-4552-8fdf-fffdaee41bc9')

Parameters:

  • :template_id. (required, String)

    The ID of the template to be deleted

Returns:

See Also:



82
83
84
# File 'lib/vonage/verify2/templates.rb', line 82

def delete(template_id:)
  request('/v2/verify/templates/' + template_id, type: Delete)
end