I have set up every other thing for bulk send and it's working pretty nicely. Following is the placeholder snippet which is being replaced by the original recipients in the bulk list:
signer = Signer(name='Multi Bulk Recipient::signer', email='multiBulkRecipients-signer@docusign.com',
role_name='signer', note='', routing_order='1', status='created', delivery_method='email',
recipient_id='13', recipient_type='signer')
sign_here = SignHere(anchor_string='**Employee Signature**', anchor_units='pixels',
anchor_y_offset='10', anchor_x_offset='20')
signer.tabs = Tabs(sign_here_tabs=[sign_here])
envelope_api.create_recipient(ACCOUNT_ID, envelope_id, recipients=Recipients(signers=[signer]))
But it is not creating the SignHere tab in the document. This same code was working in case of single envelope but that's not the case here. Can anyone help?
I have set up every other thing for bulk send and it's working pretty nicely. Following is the placeholder snippet which is being replaced by the original recipients in the bulk list:
But it is not creating the SignHere tab in the document. This same code was working in case of single envelope but that's not the case here. Can anyone help?