I have two recipients defined - R1 and R2
I have a text tab “Last Name” on the docusign form and it is set up as Collaborative.
When I hit the restAPI /accountId/envelopes, and send the nodes as below - The R1 user cannot view the field value:
{
"status":"sent",
"templateId":"<ID>",
"templateRoles":m
{
"roleName":"R1",
"email":"email@email.com",
"name":"name",
"tabs":{
"textTabs":t
{
"tabLabel":"patient.email",
"value":"test@test.com",
"shared":"true"
}
]}}]}
But when I send the envelope to both the recipients R1 and R2, then it works fine. Both of them can view and edit the field value
{
"status":"sent",
"templateId":"<ID>",
"templateRoles":u
{
"roleName":"R1",
"email":"email@email.com",
"name":"name",
"tabs":{
"textTabs":
{
"tabLabel":"patient.email",
"value":"test@test.com",
"shared":"true"
}
]}},
{
"roleName":"R2",
"email":"email@email.com",
"name":"name",
"tabs":{
"textTabs":
{
"tabLabel":"patient.email",
"value":"test@test.com",
"shared":"true"
}
]}}
]}
Please help on how to achieve it?