Error retrieving Designer view with sender account in package
Thursday, September 29, 2016 at 08:17amI'm trying to load the classic Ui designer view in an iFrame. I have changed the way I'm creating the package to include a sender account. Below is the code I'm using to create the sender account and the package.
string senderAccount = companyId.ToString() + "SENDER" + updateApproval.createUserId.ToString() + "@esl.boardbookit.com"; AccountMember member = AccountMemberBuilder.NewAccountMember(senderAccount) .WithFirstName(companyUserProfileModel.firstName) .WithLastName(companyUserProfileModel.lastName) .WithCompany(companyUserProfileModel.companyName) .WithStatus(SenderStatus.ACTIVE) .Build(); Sender senderMember = eslClient.AccountService.InviteUser(member); DocumentPackage newPackage = PackageBuilder .NewPackageNamed(updateApproval.name) .WithSenderInfo(SenderInfoBuilder.NewSenderInfo(senderMember.Email)) .WithSettings(DocumentPackageSettingsBuilder.NewDocumentPackageSettings() .WithoutInPerson() .WithoutLanguageDropDown() .HideOwnerInPersonDropDown() .WithoutWatermark() .WithoutDocumentToolbarDownloadButton() .WithoutDialogOnComplete() .WithoutOptOut() .WithoutOptOutOther() .WithoutLanguageDropDown() .WithCeremonyLayoutSettings(CeremonyLayoutSettingsBuilder.NewCeremonyLayoutSettings() .WithoutNavigator() .WithoutGlobalNavigation() .WithoutBreadCrumbs() .WithoutSessionBar() .WithProgressBar() .WithoutTitle() .WithIFrame() .WithoutGlobalConfirmButton() .WithoutGlobalDownloadButton() .WithoutGlobalSaveAsLayoutButton() )) .WithAttributes(new DocumentPackageAttributesBuilder().WithAttribute("declined", false)) .Build(); PackageId package = eslClient.CreatePackage(newPackage);When I go to create the designer url, I either get an error saying the package is not accessible or the screen shot attached about cookies. Can you tell me how to generate the designer URL in the classic view for the sender that created the package? This person needs to be able to modify the package in the designer view. I'm tried every combination of getting the authentication token and building the designer url via the sdk and manually, but still no luck. I'm using https://sandbox.e-signlive.com/api to access the classic UI in my URLs. Thank you, Colleen
Reply to: Error retrieving Designer view with sender account in package
Tuesday, October 4, 2016 at 05:57amReply to: Error retrieving Designer view with sender account in package
Thursday, September 29, 2016 at 10:55amReply to: Error retrieving Designer view with sender account in package
Thursday, September 29, 2016 at 12:04pmReply to: Error retrieving Designer view with sender account in package
Friday, September 30, 2016 at 03:37amReply to: Error retrieving Designer view with sender account in package
Friday, September 30, 2016 at 04:17amReply to: Error retrieving Designer view with sender account in package
Friday, September 30, 2016 at 05:06amReply to: Error retrieving Designer view with sender account in package
Tuesday, October 4, 2016 at 05:03am