docusign_rest gem で署名リクエストを送信したい。すべてを構成しましたが、署名要求の次の手順を実行する方法がわかりません。受信者 ID、電子メール、件名などを取得する方法。私は多くのことを試しましたが、コードの管理方法に混乱しています。
私を助けてください....
docusign_rest gem を使用しており、その API をコードに統合したいと考えています。私はすべての資格情報を持っています。
これは私のコントローラーです
class EmbedDocusignController < ApplicationController
def embedded_signing
end
def docusign_response
utility = DocusignRest::Utility.new
if params[:event] == "signing_complete"
flash[:notice] = "Thanks! Successfully signed"
render :text => utility.breakout_path(some_path), content_type: :html
else
flash[:notice] = "You chose not to sign the document."
render :text => utility.breakout_path(some_other_path), content_type: :html
end
end
def get_envelope
client = DocusignRest::Client.new
document_envelope_response = client.create_envelope_from_document(
email: {
subject: "test email subject",
body: "this is the email body and it's large!"
},
signers: [
{
embedded: false,
name: 'Test Guy',
email: 'my@yahoo.com',
role_name: 'Issuer',
sign_here_tabs: [
{
anchor_string: 'sign_here_1',
anchor_x_offset: '140',
anchor_y_offset: '8'
}
]
},
],
file: [ {path: '/assets/doc/test.pdf', name: 'test.pdf'} ],
status: 'sent'
)
end
end
前もって感謝します :)