Someswara Siripuram
Someswara Siripuram

Reputation: 151

How to set text in Different languages using DocuSign API like Norwegian?

I am using DocuSign API to create Envelopes. And I use Approve & Decline Tabs.

I want to set the language of Approve and Decline Text from API. (I will provide the text based on language). The problem is when I send special characters in the request, it throws a protocol exception.

E.g. For Decline, the text in Norwegian is "Avslå", but this throws exception.

Here is my sample request for Signer/ Recipient:

<signer>
  <recipientId>2</recipientId>
  <clientUserId>2</clientUserId>
  <email>[email protected]</email>
  <name>Someswara Siripuram</name>
  <tabs>
    <approveTabs>
      <approve>
        <xPosition>400</xPosition>
        <yPosition>500</yPosition>
        <documentId>1</documentId>
        <pageNumber>1</pageNumber>
        <tabLabel>Approve</tabLabel>
        <buttonText>Approve</buttonText>
      </approve>
    </approveTabs>
    <declineTabs>
      <decline>
        <xPosition>480</xPosition>
        <yPosition>500</yPosition>
        <documentId>1</documentId>
        <pageNumber>1</pageNumber>
        <tabLabel>Decline</tabLabel>
        <buttonText>**Avslå**</buttonText>
      </decline>
    </declineTabs>
  </tabs>
</signer>

Please help!

Upvotes: 0

Views: 171

Answers (2)

Someswara Siripuram
Someswara Siripuram

Reputation: 151

The issue that Decline text does not change even when set using API call was the issue in DocuSign API.

I contacted DocuSign API team and raised this issue and they have resolved this issue on September 5, 2014. :)

Upvotes: 0

Frank Tsai
Frank Tsai

Reputation: 41

This may be set in the signing resource file.

Then modify the data element DocuSign_Decline

Upvotes: 1

Related Questions