У меня есть один вопрос по поводу docusign api. Я использую API Docusign для электронной подписи. В моем требовании представление получателя не отображается на веб-сайте docusign, а отображается только на моем веб-сайте, где пользователь может выполнить электронную подпись для документа. В основном я сделал это. Мой вопрос начинается сейчас. Как я могу добавить двух получателей на документ. Я пробую это с одним получателем, но не знаю, как использовать несколько получателей. Здесь у двух получателей (человек) один — это я, а другой — мой клиент, который покупает товар у меня. Когда я отправляю этот конверт моему клиенту. Сначала он придет ко мне, а затем после того, как мой знак перейдет на мою клиентскую сторону и будет ждать его знака. Как я могу сделать эти приоритеты также?
require_once './docusign-php-client/src/DocuSign_Client.php';
require_once './docusign-php-client/src/service/DocuSign_RequestSignatureService.php';
require_once './docusign-php-client/src/service/DocuSign_ViewsService.php';
$clientConfig = array(
// Enter your Integrator Key, Email, and Password
'integrator_key' => "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", 'email' => "xxxxxxxxxxxxxxxxxxxxxx", 'password' => "xxxxxxxxxxxxxxxxxx",
// API version (v2 is latest) and environment (i.e. demo, www, etc)
'version' => 'v2', 'environment' => 'demo'
);
// Instantiate client and call the Login API
$client = new DocuSign_Client($clientConfig);
// create service object and configure envelope settings, document(s), and recipient(s)
$service = new DocuSign_RequestSignatureService($client);
$emailSubject = "Please sign this document.";
$emailBlurb = "This is a document from Developer who test this docusign app. I would like to work with this.";
// add one signHere tab for the recipient located 100 pixels right and
// 150 pixels down from the top left corner of document's first page
$tabs1 = array( "signHereTabs" => array(
array( "documentId" => "2",
"pageNumber" => "1",
"xPosition" => "450",
"yPosition" => "233" )));
// $tabs2 = array( "signHereTabs" => array(
// array( "documentId" => "2",
// "pageNumber" => "1",
// "xPosition" => "130",
// "yPosition" => "233" )));
$signed_document_id = time();
// add a recipient and document to the envelope
$recipients = array( new DocuSign_Recipient( "1", "1", "I am", "[email protected]", $signed_document_id, 'signers', $tabs1) );
$documents = array( new DocuSign_Document("TEST.PDF", "1", file_get_contents("BCD.pdf")) , new DocuSign_Document("TEST.PDF", "2", file_get_contents("ABC.pdf")) );
// "sent" to send immediately, "created" to save as draft in your account
$status = 'sent';
//*** Create and send the envelope with embedded recipient
$response = $service->signature->createEnvelopeFromDocument( $emailSubject, $emailBlurb, $status, $documents, $recipients, array() );
/**************************************************/
/* Step- 3 Embadded sign iframe */
/**************************************************/
$service = new DocuSign_ViewsService($client);
$envelopeId = $response->envelopeId;
$returnUrl = "https://demo.docusign.com;
$authMethod = "email";
$response = $service->views->getRecipientView( $returnUrl,
$envelopeId,
"i am",
"[email protected]",
$signed_document_id,
$authMethod );
$sign_url = $response->url;
Да, вы можете попросить двух разных людей подписать документ через DocuSign, где оба подписывают подпись в вашем приложении.
Это называется «встроенная подпись».
Помните, что когда вы разрешаете кому-либо подписывать документы из вашего приложения, ваше приложение отвечает за проверку подлинности подписавшего.
Больше информации: см. рецепт для встроенной подписи.
Других решений пока нет …