【问题标题】:Docusign SDK C# Radio Button Group ,Docusign The RecipientId specified in the tab element does not refer to a recipient of this envelopeDocusign SDK C# Radio Button Group ,Docusign 选项卡元素中指定的 RecipientId 不指代此信封的收件人
【发布时间】:2021-01-18 06:14:06
【问题描述】:

我在 Docusign Radio group 上收到此问题。我是

Docusign 选项卡元素中指定的 RecipientId 不引用此信封的收件人。 Tab 指的是 RecipientId 88183597-41B3-42C5-9E48-D1A4D5C3F262 不存在的人。

这很好用:

return new RadioGroup
            {
                GroupName= Guid.NewGuid().ToString(),
                DocumentId = documentId, 
                RecipientId = userId,
             
            };

这不起作用。

return new RadioGroup
            {
                GroupName= Guid.NewGuid().ToString(),
                DocumentId = documentId, 
                RecipientId = userId,
               Radios= new List<Radio>()
               {
                   new Radio(){ PageNumber="1",Selected = "true",Value ="X",XPosition = "300", YPosition = "75" } ,
                  // new Radio(){ PageNumber="1",Selected = "false",Value ="Y",XPosition = "350", YPosition = "75" }
               },
            };

我将签名者标签设置为

 signer.Tabs = new Tabs
            {
                SignHereTabs = signers,
                InitialHereTabs = initialsHere,
                DateSignedTabs = dateSinged,
                ApproveTabs = approves,
                DeclineTabs = declines,
                FullNameTabs = fullNames,
                CheckboxTabs = checkBoxes,
                RadioGroupTabs = radiobuttongroups,
                TextTabs = textboxes,

            };

【问题讨论】:

    标签: c# sdk docusignapi radio-group


    【解决方案1】:

    经过长时间调试得知 DocuSign 将收件人 ID 转换为小写,并且不知何故与 TAB 的收件人 ID 不匹配,不得不将签名者和选项卡的收件人 ID 转换为小写。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2020-05-11
      • 1970-01-01
      • 2022-11-28
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多