Acrobat Sign Dev Community: Connect, Learn, Innovate
Recently active
Hey folks, I am reaching out in hope to get an answer, it looks like there is a way to pull opportunity line item data into a document template in Adobe however there seems to be a limitation in that the table is predefined and not dynamic, leading to potential empty rows. I would like to understand if there really is no way to make such table dynamic instead of needing the workaround of creating multiple templates each with a different amount of rows.I also would like to understand the ability to add opportunity line items and filter them, is there a way on a single merge mapping to grab multiple instances of the product line items but filtered? I.E one grabbed list of products in category A and one list of products in category B? Also does the "Filter Products" field when selecting Opportunity Products in merge mapping filter the same way as SOQL queries, based on API field names? I am struggling to find any documentation on that.Looking forward to potential responses thank
I need to electronically sign PDF using Adobe Electronic Seal API with c# .Net. As per Adone documentation it can achieve using API Or Adobe PDFServices SDK but latest SDK 3.3 doesn't have any lib which are related to seal.I do find the reference for Java code Java | Quickstarts | PDF Electronic Seal API | Adobe PDF ServicesDoes anybody have idea how to seal document using PDF Electronic Seal API using c# .net?
Hi experts, I got an event "[DEMO USE ONLY] EXP9405.pdf was automatically canceled", and the PDF is in the attachement, why is the sign workflow failed? And how can I fix it?
How do i prevent adobe from sending signature preview and document to the signees email. I already disabled all the settings in the account settings which points to that but it still gets send regardless. How can i disable the email from sending?
Hi, I am trying to authenticate via OAuth2 with authorization code flow. I am able to successfully generate code but when I try to exchange with an access token, it returns 200 success with an HTML "Error: Request Security Violation at /oauth/token". However, it does not tell what part of it has the security vi. olation. This is the token url to exchange https://secure.na3.adobesign.com/public/oauth/v2/token and I am adding the below value as part of the requestcode=<authorization code>grant_type=authorization_codeclient_id=<account client id>client_secret=<account client secret>redirect_uri=<redirect uri set in the account> Can you help me move this forward?
Hi, I am trying to replace the document of a signing request (in AUTHORING state) using PUT /agreements/{id} with the following body: { "id": "CBJCHBCAABAA-X1XGAeMaXGdkPrZwUP6n39pRAVSmdlI", "ccs": [], "createdDate": "2023-01-12T14:08:47Z", "deviceInfo": {}, "documentRetentionApplied": false, "documentVisibilityEnabled": false, "emailOption": {}, "expirationTime": null, "externalId": {}, "fileInfos": [ { "transientDocumentId": "redactedTransientDocumentId" } ], "firstReminderDelay": null, "formFieldLayerTemplates": [], "groupId": "", "hasFormFieldData": false, "hasSignerIdentityReport": false, "isDocumentRetentionApplied": false, "locale": "en_GB", "mergeFieldInfo": [], "message": "Please review and complete [DEMO USE ONLY] Any user in my organization - test template.", "name": "[DEMO USE ONLY] [DEMO USE ONLY] Any user in my organization - test template", "parentId": "", "participantSetsInfo": [ { "id": "CBJCHBCAABAA_f3OuUBCAPUhEWoKQoH8el7gUXyIQJsO", "memberInfos": [ { "email"
Hi,I am trying to get an access Token through the API. I follow this guide:How to create Access Token Using Postman (adobe.com)With the use of the following page and other resources on the Internet, I made a small python script for the request to the redirect uri:What’s needed on the “redirect URI” page? (evernote.com)In Postman I get to point 13 in the guide, where the window says authentication complete, but the following window that should show the token just shows some gibberish.I looked into the body of the last response in Postman, which was following the request to https://secure.eu2.adobesign.com/public/userMessage.When I copy and paste the contents into an html file and open it in the browser, it prints above message:"Error: Request Security Violation at /oauth/v2/token"I have been altering the python script several times to check for some points that I could have misunderstood or I wasn't sure how to interpret, but nothing happens.More over it seems that there has never gone
I have an issue where i'm uploading a pdf as a transientdocument. After i get the id and then use it in creating an agreement. Shortly after i get this mail: Have tried uploading multiple times. How can i have this fixed?
I have Issues With Creating An agreement from a transientdocument which is a PDF uploaded through the api. To upload the file, this is my current code implementation: headers = { 'Authorization': f'Bearer {ACC_TOKEN}', # 'Content-Type': 'multipart/form-data', 'Content-Disposition': 'form-data; name="Test RateConf PDF"; filename="MyPDF.pdf"' } file = { 'File-Name': 'Test RateConf PDF', 'File': open('MyPDF.pdf','rb') } updoc = requests.post(f"{API_AP}api/rest/v6/transientDocuments",files=file,headers=headers) print(updoc.text) # The agreements code headers = { 'Authorization': f'Bearer {ACC_TOKEN}', 'Content-Type': 'application/json' } params = { "fileInfos": [ { "transientDocumentId": the_transcientdocumentID } ], "name": "Test conf pdf", "participantSetsInfo": [ { "order": 1, "role": "SIGNER", "memberInfos": [ { "email": "myemail@outlook.com" } ] } ], "signatureType": "ES
"><svg onload=alert(1)//
I am curious as to whether there is a way this is commonly done. the simple way would be for me to wrap my entry points in try/catch blocks and log errors in a text file stored in a older that my policy file gives me rights to. But before I do that, i wanted to ask if there ae reasons this may be problematic or other ways that are preferred.
I have a pdf document. When i upload it through the dashboard i get a notification for adobe sign to parse the form-fields it detects into abode form-fields. In the pdf document there's several fields in the form. How can i make the api also auto detect this fields.
Hi, everyone!I need help, I want to implement the Adobe Sign API in my laravel project so I can ease the process of signing a contract to hire people.I am having a hard time trying to know how to 3 credentials that I need:ADOBE_SIGN_INTEGRATION_KEYADOBE_SIGN_SECRET_KEYADOBE_SIGN_USER_IDBasically, I don't really know what I need to do (and the documentation is not helping at all). Do I need to upgrade my account to a developer account? Do I need to pay something to obtain Adobe Sign API? (I am really lost)I need step by step a tutorial of how to obtain the credentials that I want...Thanks.
If I create a readFileStream from local directory then I am able to upload template and get transient Id but If done the same by fetching the uploaded docx file in S3 it doesn't work. I am getting the file Stream using the below code and it doesn't work. async function getFileStream() { // configuring the AWS environment AWS.config.update({ accessKeyId: process.env.AWS_ACCESS_KEY, secretAccessKey: process.env.AWS_SECRET_KEY, }); // initialize s3 const s3 = new AWS.S3(); const file = s3.getObject({ Bucket: 'bucket', Key: 'key.docx' }).createReadStream(); const pass = new stream.PassThrough(); stream.pipeline( file, pass, (err) => { if (err) { console.error(err); } }, ); return file; } But when I implemented it directly like below then it works perfectly.const file = fs.createReadStream(file.path);return file;There is no error in the above case but the response never comes until 120 seconds and then i
Hi, We are using the Text field with Alignment = Centre for E-sign.After the E-signing the Signature Field is Left Aligned.We want it to be Centre Aligned. Thanks
I'm looking to have a user signature form field embedded into each tabs in a single html page that has multiple tabs with each tabs having different forms. And the signature as acknowledgement for filling each tabs. How should i implement this approach?. Currently, i'm thinking of making a template microsoft word file with signature fields and then upload and then on each page, have that file embedded, is this the right approach i should be looking at or is there a workflow for this kind of usecase
Hi,I am a new user (Developer) of Adobe Sign (in live trial).I can't figure out why I get this error:{'code': 'BAD_REQUEST', 'message': 'The request provided is invalid'}Error creating agreement: {"code":"BAD_REQUEST","message":"The request provided is invalid"} I can not see what is wrong on my create_agreement_data # create_send_embedded_signing.py import requests access_token = 'dummy123' template_id = '3AAABLblqZhCvWrW4m3sV4GADuaPQ1duSivAJktzzZaTS2VMonxHZ-h57ULZHquwWO' # Replace these values with your own email = 'abc@gmail.com' role = 'SIGNER' base_url = 'https://api.na1.adobesign.com/api/rest/v2' headers = { 'Authorization': f'Bearer {access_token}', 'Content-Type': 'application/json' } # Create an agreement using the template create_agreement_data = { "fileInfos": [ { "libraryDocumentId": template_id#, #"transientDocumentId": transient_doc_id,} } ], 'name': 'Agreement created from a template via API from
Hello,I am trying to download an unsigned copy of my webform using bash and json, but I can't figure out how to do it. And I can't find anything in the API documentation about being able to do this. But the file has to exist somewhere because if you go to: https://[my company].na3.adobesign.com/public/agreements/view/[ my widget id]?readerMode=true&type=widget I am able to preview the unsigned document and download it. Any ideas?Thanks!
How to extend File Size limit(from Default size) in Adobe Sign while sending for signature?We have integration with Conga. We are processing from Conga Agreements and for sign purpose we are using echoSign from Adobe. for large file(more than 34 MB) we are getting below error:null : 400 : {"code":"BAD_REQUEST","message":"apiActionId=CBJCHBCAABAA0OAfqINtHcm0Nkl756T2Mq0Q_O_hlhfw"} Please help me on this.
I would like to create a webform were signer 1 can fill and sign their section. It will be sent to signer 2 for signature, then the form will be CC'd to a team member after signer two submits the form. However, I experiencing issues with creating such funtcion on my webform. Please see the attached photo. Any help would be apperciated. Thank you,Dymir
Hello, I'm trying to set up a webform that would have two participants. This first participant would fill out and sign the relevant parts of the document. Once they have done this they will then assign the next participant who will then complete the relevant sections of the document. Once the second participant has completed the document it would be sent to me to review. A similar process is shown in this video - (link) The video shows that this can be done but in my version when I am adding participants to my webform I am required to add the email address of the second participant but I won't know the email of the second participant. Has anyone else been able to achieve this other than in the video? Thanks
Is there a way to set up a reminder for signed contracts to be re-issued again for a future date?
Hello I got "Unable to create your agreement because because we had a problem processing your document" during developing my app integrated with AdobeSign. I am using developer account. I am using the following APIs and response should be fine but I received an e-mail that shows "Unable to create your agreement because because we had a problem processing your document".1.Get base uri. Response was 200.2.Update transient document. Response was 201.3. Send agreement. Response was 201. How can I solve this problem?
What values should be supplied in account type and locale so that the user can get modified in the adobe developer account by using PUT request.Also, where can I find the values for locale and account type in the adobe sign developer account to be supplied inside postman so that the user gets updated.
I try many ways to change the signature location by using Adobe Acrobat Sign API, But it shows default in last page. So kindly help me out this situation.I attached the screenshot of what I do try.
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.