2017-01-09 5 views
0

私はdocusign用にPHP Apiを使用しています。 hereから得ました。私が望むのは、署名されたDOCのURLを取得することです。それを得ることは可能ですか? ?次のコードを使用しています。pdf url docusignを入手する方法Php Api

$username = $option['docu_username']; 
    $password =$option['docu_pass']; 
    $integrator_key = $option['docu_integrator_key']; 
    $host = $option['docu_host']; 
    // create a new DocuSign configuration and assign host and header(s) 
    $config = new DocuSign\eSign\Configuration(); 
    $config->setHost($host); 
    $config->addDefaultHeader("X-DocuSign-Authentication", "{\"Username\":\"" . $username . "\",\"Password\":\"" . $password . "\",\"IntegratorKey\":\"" . $integrator_key . "\"}"); 
    ///////////////////////////////////////////////////////////////////////// 
    // STEP 1: Login() API 
    ///////////////////////////////////////////////////////////////////////// 
    // instantiate a new docusign api client 
    $apiClient = new DocuSign\eSign\ApiClient($config); 
    // we will first make the Login() call which exists in the AuthenticationApi... 
    $authenticationApi = new DocuSign\eSign\Api\AuthenticationApi($apiClient); 
    // optional login parameters 
    $options = new \DocuSign\eSign\Api\AuthenticationApi\LoginOptions(); 
    // call the login() API 
    $loginInformation = $authenticationApi->login($options); 
    // parse the login results 
    if(isset($loginInformation) && count($loginInformation) > 0) 
    { 
     // note: defaulting to first account found, user might be a 
     // member of multiple accounts 
     $loginAccount = $loginInformation->getLoginAccounts()[0]; 
     if(isset($loginInformation)) 
     { 
      $accountId = $loginAccount->getAccountId(); 
     } 
    } 
    if(empty($accountId)) 
    { 
     return false; 
    } 
    ///////////////////////////////////////////////////////////////////////// 
    // STEP 2: Create & Send Envelope (aka Signature Request) 
    ///////////////////////////////////////////////////////////////////////// 
    // set recipient information 

    // instantiate a new envelopeApi object 
    $envelopeApi = new DocuSign\eSign\Api\EnvelopesApi($apiClient); 
    // Add a document to the envelope 
    $document = new DocuSign\eSign\Model\Document(); 
    $document->setDocumentBase64(base64_encode(file_get_contents($documentFileName))); 
    $document->setName($documentName); 
    $document->setDocumentId("1"); 
    // Create a |SignHere| tab somewhere on the document for the recipient to sign 
    $signHere = new \DocuSign\eSign\Model\SignHere(); 
    $signHere->setXPosition("20"); 
    $signHere->setYPosition("20"); 
    $signHere->setDocumentId("1"); 
    $signHere->setPageNumber("1"); 
    $signHere->setRecipientId("1"); 
    // add the signature tab to the envelope's list of tabs 
    $tabs = new DocuSign\eSign\Model\Tabs(); 
    $tabs->setSignHereTabs(array($signHere)); 
    // add a signer to the envelope 
    $signer = new \DocuSign\eSign\Model\Signer(); 
    $signer->setEmail($recipientEmail); 
    $signer->setName($recipientName); 
    $signer->setRecipientId("1"); 
    $signer->setClientUserId('12345'); 
    $signer->setTabs($tabs); 
    // Add a recipient to sign the document 
    $recipients = new DocuSign\eSign\Model\Recipients(); 
    $recipients->setSigners(array($signer)); 
    $envelop_definition = new DocuSign\eSign\Model\EnvelopeDefinition(); 
    $envelop_definition->setEmailSubject("Please sign this doc"); 
    // set envelope status to "sent" to immediately send the signature request 
    $envelop_definition->setStatus("sent"); 
    $envelop_definition->setRecipients($recipients); 
    $envelop_definition->setDocuments(array($document)); 
    // create and send the envelope! (aka signature request) 
    $envelop_summary = $envelopeApi->createEnvelope($accountId, $envelop_definition, null); 
$viewrequest = new DocuSign\eSign\Model\RecipientViewRequest(); 
     $viewrequest->setUserName($recipientName); 
     $viewrequest->setEmail($recipientEmail); 
     $viewrequest->setRecipientId(1); 
     $viewrequest->setClientUserId('12345'); 
     $viewrequest->setAuthenticationMethod('email'); 
     $viewrequest->setReturnUrl($ReturnUrl); 
     $envelopview=$envelopeApi->createRecipientView($accountId,$document->envelopeId,$viewrequest); 
     $redirecturl=$envelopview->getUrl(); 

答えて

1

はい、そうです。あなたは封筒の文書をリストアップして入手することもできます。

listDocumentsgetDocumentの方法を見てください。私はPHPでプログラミングしていないので、例を提供することはできませんが、ちょうどGitHub PHP SDK repoとそれも利用可能です。

ちなみに、REST APIを直接使用すると、封筒のすべてのドキュメントを1つのPDFで提供するエンドポイントがありますが、SDK(JavaまたはPHPではなく)に類似したものは見つかりませんでした。

希望すると助かります!

+0

docを入手できません。どのように私はそれを行うことができますか? – MKD

+0

@Erginの回答が私の答えを補完します。バイトを取得してPDFに変換する必要があります。 – jfneis

0

@jfneと同じように、getDocument() APIを使用して、エンベロープの実際の署名付き文書バイトを取得する必要があります。ただし、これを行う前に、listDocuments()リクエストを作成して、各ドキュメントをダウンロードするための実際のドキュメントエンドポイントを取得してください。

エンベロープのドキュメントをダウンロードする各エンドポイントには、URLの一部としてdocumentIdが含まれます。たとえば、2つの文書(ID 1001と1002)を持つ封筒 "AAA"をダウンロードするには、次のようにします。

GET v2/accounts/12345/envelopes/AAA/documents/1001 
GET v2/accounts/12345/envelopes/AAA/documents/1002 
関連する問題