Method: Echosign::Client#get_widget_documents

Defined in:
lib/echosign/widget/client.rb

#get_widget_documents(widget_id, version_id = nil, participant_email = nil) ⇒ Hash

Retrieves the IDs of the documents associated with widget.

Parameters:

  • widget_id (String)
  • version_id (String) (defaults to: nil)

    The version identifier of widget as provided by get_widget. If not provided then latest version will be used.

  • participant_email (String) (defaults to: nil)

    The email address of the participant to be used to retrieve documents

Returns:

  • (Hash)

    Info about widget documents



56
57
58
# File 'lib/echosign/widget/client.rb', line 56

def get_widget_documents(widget_id, version_id = nil, participant_email = nil)
  request(:get_widget_documents, widget_id, version_id, participant_email)
end