Docusign SDK C# Radio Button Group ,Docusign tab 元素中指定的 RecipientId 不引用此信封的收件人
Docusign SDK C# Radio Button Group ,Docusign The RecipientId specified in the tab element does not refer to a recipient of this envelope
我在 Docusign Radio 上收到这个问题 group.I am
Docusign 在 tab 元素中指定的 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,
};
经过长时间的调试得知 DocuSign 将收件人 ID 转换为小写并且不知何故与 TAB 的收件人 ID 不匹配,不得不将签名者和标签的收件人 ID 转换为小写。
我在 Docusign Radio 上收到这个问题 group.I am
Docusign 在 tab 元素中指定的 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,
};
经过长时间的调试得知 DocuSign 将收件人 ID 转换为小写并且不知何故与 TAB 的收件人 ID 不匹配,不得不将签名者和标签的收件人 ID 转换为小写。