Sha256: 4f0e3e8b867eb6b2eb55f70c7c455a736bba7a249c83c59372a088087b67ad60

Contents?: true

Size: 930 Bytes

Versions: 5

Compression:

Stored size: 930 Bytes

Contents

module HelloSign
  module Api

    #
    # HelloSign allows you to embed the signing page on your site in an iFrame
    # without the need for the end-user to create a HelloSign account.
    # Take a look at our {https://www.hellosign.com/api/embeddedSigningWalkthrough embedded signing walkthrough}
    # for more information about this.
    #
    # @author [hellosign]
    #
    module Embedded

      #
      # Retrieves the embedded signature request url.
      # @option opts [String] signature_id The id of the signature to get a signature url for
      #
      # @return [HelloSign::Resource::Embedded] Returns an Embedded object
      # @example
      #   embedded = @client.get_embedded_sign_url :signature_id => '50e3542f738adfa7ddd4cbd4c00d2a8ab6e4194b'
      #
      def get_embedded_sign_url(opts)
        HelloSign::Resource::Embedded.new get("/embedded/sign_url/#{opts[:signature_id]}")
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
hellosign-ruby-sdk-3.0.9 lib/hello_sign/api/embedded.rb
hellosign-ruby-sdk-3.0.7 lib/hello_sign/api/embedded.rb
hellosign-ruby-sdk-3.0.6 lib/hello_sign/api/embedded.rb
hellosign-ruby-sdk-3.0.5 lib/hello_sign/api/embedded.rb
hellosign-ruby-sdk-3.0.4 lib/hello_sign/api/embedded.rb