Skip to content
Advertisement

DocuSign EnvelopesApi::CreateRecipient API call does not create tabs

i’m trying to update an existing and not completed Docusign envelope and add a new signer to the document inside. For this purpose i’m using the PHP SDK with EnvelopesApi::createRecipient method, framework is CodeIgniter btw. The API call successfully creates the recipient (I can check it in the DocuSign admin panel), but the signature I supplied with a new SignHere tab is not added to the document. I tried making the call via Postman directly but same issue.

I double-checked the supplied ids (clientUserId, recipientId, documentId) and they are ok, same for the SignHere anchor string which is auto placed.

Sample code :

JavaScript

Create signer method, returning the Signer object with his SignHere tab :

JavaScript

JSON body posted to the API endpoint :

JavaScript

API response :

JavaScript

No error in response, what am I doing wrong ?

I also tried other SDK method like EnvelopesApi::updateRecipients, EnvelopesApi::updateTabs or EnvelopesApi::updateDocumentTabs with no more success

Update Thanks to Inbar Gazit’s response down below, correct endpoint is

JavaScript

which is called via these methods in SDK : EnvelopesApi::createTabsWithHttpInfo, EnvelopesApi::updateTabsWithHttpInfo etc.

Advertisement

Answer

I’m sorry this is harder than it should be. The correct end point is [UpdateRecipientTabs][1] It’s a PUT call that looks like this

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement