2014-07-14 3 views
0

요청과 함께 보내는 회사 이름으로 회사 탭을 채우려고합니다. 그러나 이렇게 할 때마다 회사 탭에 나타나는 회사 이름은 '값'필드에 지정한 회사 이름이 아니라 내 개발자 계정에 연결된 회사 이름입니다. 그 내가 <concealValueOnDocument> 태그가하는 가정 무엇 때문에,동적 값이있는 채우기 회사 탭

<envelopeDefinition xmlns="http://www.docusign.com/restapi"> 
    <emailSubject>COMPANY NAME Has Sent A Document for You to Sign</emailSubject> 
    <status>sent</status> 
    <documents> 
     <document> 
      <documentId>1</documentId> 
      <name>file.rtf</name> 
     </document> 
    </documents> 

    <recipients> 
     <signers> 
      <signer> 
       <recipientId>1</recipientId> 
       <email>[email protected]</email> 
       <name>Bobby Buyer</name> 
       <routingOrder>1</routingOrder> 
       <tabs> 
        <signHereTabs> 
         <signHere> 
          <anchorString>//bs01_01//</anchorString> 
          <anchorXOffset>1.5</anchorXOffset> 
          <anchorYOffset>0.0</anchorYOffset> 
          <anchorIgnoreIfNotPresent>true</anchorIgnoreIfNotPresent> 
          <anchorUnits>inches</anchorUnits> 
          <documentID>1</documentID> 
          <pageNumber>1</pageNumber> 
          <recipientID>1</recipientID> 
          <optional>false</optional> 
         </signHere> 
        </signHereTabs> 

      <signer> 
       <recipientId>2</recipientId> 
       <email>[email protected]</email> 
       <name>Sally Seller</name> 
       <routingOrder>2</routingOrder> 
       <tabs> 
        <signHereTabs> 
         <signHere> 
          <anchorString>//ss01_01//</anchorString> 
          <anchorXOffset>1.5</anchorXOffset> 
          <anchorYOffset>0.0</anchorYOffset> 
          <anchorIgnoreIfNotPresent>true</anchorIgnoreIfNotPresent> 
          <anchorUnits>inches</anchorUnits> 
          <documentID>1</documentID> 
          <pageNumber>1</pageNumber> 
          <recipientID>2</recipientID> 
          <optional>false</optional> 
         </signHere> 
        </signHereTabs> 

        <companyTabs> 
         <company> 
          <anchorString>//sco01_01//</anchorString> 
          <anchorXOffset>0.0</anchorXOffset> 
          <anchorYOffset>0.0</anchorYOffset> 
          <anchorIgnoreIfNotPresent>true</anchorIgnoreIfNotPresent> 
          <anchorUnits>inches</anchorUnits> 
          <documentID>1</documentID> 
          <pageNumber>1</pageNumber> 
          <recipientID>2</recipientID> 
          <optional>false</optional> 
          <concealValueOnDocument>false</concealValueOnDocument> 
          <tabLabel>compName</tabLabel> 
          <value>COMPANY NAME</value> 
          <locked>false</locked> 
         </company> 

       </tabs> 
      </signer> 
     </signers> 
    </recipients> 
</envelopeDefinition> 

또한, 내가 회사 이름을 볼 수 있도록 모든받는 싶습니다

여기 내 봉투 정의입니다. 그러나, 그렇게하지 않기 때문에, 내가해야한다고 생각하는 것을해서는 안됩니다.

+0

닫는 탭의 작업을 추가 했습니까? – Ergin

답변

1

마치 </companyTabs> 노드가없는 것 같습니다. 지금 당신은 :

<companyTabs> 
    <company> 
     <anchorString>//sco01_01//</anchorString> 
     ... 
    </company> 

봅니다로 변경 :

<companyTabs> 
    <company> 
     <anchorString>//sco01_01//</anchorString> 
     ... 
    </company>  
</companyTabs> 
+0

이 기능을 사용하셨습니까? 그렇다면 대답과 upvote로 받아 들일 수 있습니까? – Ergin