1
docusignの署名をラジオボタンのようにするにはどうすればよいですか?(フォームの "Accept"または "Decline" )また、条件を追加して、一度に1つのシグネチャしか有効にならないようにしたい(つまり、ユーザは署名を行う場所を選択できる)。Docusign - 2つの署名ブロックのうち1つの署名ブロックのみを署名可能にする
docusignの署名をラジオボタンのようにするにはどうすればよいですか?(フォームの "Accept"または "Decline" )また、条件を追加して、一度に1つのシグネチャしか有効にならないようにしたい(つまり、ユーザは署名を行う場所を選択できる)。Docusign - 2つの署名ブロックのうち1つの署名ブロックのみを署名可能にする
ユースケースを達成するために、ラジオボタングループを使用して、ドキュメントに条件付き署名フィールドを付けることができます。ここで
サンプルCreateEnvelopeコールです。
{
"recipients": {
"signers": [
{
"email": "[email protected]",
"name": "Signer One",
"recipientId": 1,
"tabs":
{
"signHereTabs": [
{
"tabLabel": "ApproveSignature",
"documentId": "1",
"pageNumber": "1",
"xPosition": "159",
"yPosition": "340",
"conditionalParentLabel": "RadioGroup_1",
"conditionalParentValue": "Approve",
"tabOrder": "0",
},
{
"tabLabel": "DeclineSignature",
"documentId": "1",
"pageNumber": "1",
"xPosition": "360",
"yPosition": "339",
"conditionalParentLabel": "RadioGroup_1",
"conditionalParentValue": "Decline",
}
],
"radioGroupTabs": [
{
"documentId": "1",
"recipientId": "1",
"groupName": "RadioGroup_1",
"radios": [
{
"pageNumber": "1",
"xPosition": "119",
"yPosition": "199",
"value": "Approve",
"selected": "false",
"required": "true",
},
{
"pageNumber": "1",
"xPosition": "356",
"yPosition": "199",
"value": "Decline",
"selected": "false",
"required": "true",
}
],
}
]
}
}
]
},
"emailSubject": "Please approve or deny my document",
"documents": [
{
"documentId": "1",
"name": "Approve or Deny",
"fileExtension" : "pdf",
"documentBase64": "[Intentionally Left out]"
}
],
"status": "sent"
}