Method: HelloSign::Api::Embedded#get_embedded_template_edit_url

Defined in:
lib/hello_sign/api/embedded.rb

#get_embedded_template_edit_url(opts) ⇒ HelloSign::Resource::Embedded

Retrieves the edit url for an embedded template.

Examples:

edit_url = @client.get_embedded_template_edit_url :template_id => '39e3387f738adfa7ddd4cbd4c00d2a8ab6e4194b'

Parameters:

  • opts (Hash)

    a customizable set of options

Options Hash (opts):

  • template_id (String)

    The id of the template to get a edit url for

Returns:



57
58
59
# File 'lib/hello_sign/api/embedded.rb', line 57

def get_embedded_template_edit_url(opts)
  HelloSign::Resource::Embedded.new get("/embedded/edit_url/#{opts[:template_id]}")
end