Account


Earned badges

Achievement: Latest Unlocked

Topic Started

Topics
Hi, A quick question, is it possible to customize the Confirmation Popup text (See attached screenshot) ? thanks !
Hi, Is it possible to have only one ceremony for two signers ? We want to redirect the users to the signing ceremony, but we would like both signers to sign in that same redirect url.
Hi ! I'm trying to update a package and replace the pdf document in it, but I get this error : Unable to update package settings.

Replies Created

Reply to: Error 403 when updating a package

0 votes
Thanks ! I did that, at first it didn't work so I added a SendPackage after the Update Package, but it doesn't update the document, the pdf is the same after. I don't have an Is it how it's supposed to be done ? Is there a more "straight forward" way to do it than this :
PackageId packageId = new PackageId(args.PackageId);

EslClient.ChangePackageStatusToDraft(packageId);

DocumentPackage package =  EslClient.GetPackage(packageId);

Document currentDocument = package.GetDocument("Declaration");

Document documentToUpdate = DocumentBuilder.NewDocumentNamed(currentDocument.Name)
                                                .FromStream(new MemoryStream(args.PdfBytes), DocumentType.PDF)
                                                .WithId(currentDocument.Id.ToString()).Build();
documentToUpdate.AddSignatures(currentDocument.Signatures);

int docIndex = package.Documents.IndexOf(currentDocument);
package.Documents[docIndex] = documentToUpdate;

EslClient.UpdatePackage(packageId, package);
EslClient.SendPackage(packageId);
Thanks again !

Reply to: Multiple signers in single ceremony

0 votes
Yes it's an embedded scenario. I tried the .WithInPerson but I have a few questions : - Why does my name appears in the signers list ? The test account is in my name, but I want to see only signers. - Is the flow with redirections to "confirmation" steps mandatory between signers ? Can't it switch to the second signer automatically after first one has signed ? - Finally, is there a way to automatically redirect the user back to my application when the document is completely signed ? Thanks !

Subscriptions

Topics Replies Freshness Views Users
Hi, A quick question, is it possible to customize the Confirmation Popup text (See attached screenshot) ? thanks !
1 6 years 6 months ago 8
Profile picture for user harishaidary
Hi, Is it possible to have only one ceremony for two signers ? We want to redirect the users to the signing ceremony, but we would like both signers to sign in that same redirect url.
3 6 years 6 months ago 37
Profile picture for user mwilliams
Hi ! I'm trying to update a package and replace the pdf document in it, but I get this error : Unable to update package settings.
4 6 years 10 months ago 295
Profile picture for user harishaidary

Code Share

This user has not submitted any code shares.

Subscriptions Release Notes

This user is not subscribed to any release notes.