0

When I create a new account through the REST API using the following JSON, which contains an apostrophe in the accountName

{
   "accountName":"St. Matthew's Hospital",
   "planInformation":{
      "currencyCode":"USD",
      "planId":"55555555-5555-5555-55555-5555555555"
   },
   "distributorCode":"Acme Partner",
   "distributorPassword":"Acme-N0h4ck1ng",
   "initialUser":{
      "email":"smh@gmail.com",
      "enableConnectForUser":"false",
      "password":"asdf123",
      "userName":"St. Matthew's Hospital"
   }
}

...the account is created, but when I log in to the DocuSign console as the new user and navigate to preferences, I get this error in the:

Invalid Form Value Characters not allowed. The &# combination and < > can be an indication of a malicious attack. We block these characters in input fields. Please remove them and try again. For help: support@docusign.com

Is it possible to create an account with an apostrophe in the name?

4

1 回答 1

1

如果您尝试转义引号字符会发生什么?我相信这样的事情应该有效:

"accountName":"St. Matthew\'s Hospital",
于 2013-10-18T01:18:13.593 回答