922 results matched your search criteria
Forum topic
OneSpan Sign
Get sender ids by owner’s api key
API Call : https://sandbox.e-signlive.com/api/account/senders
We are trying to retrieve the senders by owners API key. In the response it returns only one sender where we have multiple senders. Can you please help with this.
Thanks
Rajesh
Forum topic
OneSpan Sign
Hi team,
We have a client who's asking whether there's a way to get when an attachment is uploaded, using API? It seems not in the transaction payload.
Thanks in advance!
Forum topic
OneSpan Sign
In order to access Rest API for documents retrieval, i have to provide "Authorization: Basic api_key". How do i get Basic api_key?
Forum topic
OneSpan Sign
Hi Team,
Could you help me with API/JSON format to draw on a signature field .
Appreciate your help.
Thanks,
Ramki
Forum topic
OneSpan Sign
Guys -
Is there an API call where I can return the document list by signer? I know I can get this information just by doing a GET to the package but that also brings back more than what I need. I can also do the DocumentVisibility API call but then I would have to filter by associated Roles.
Forum topic
OneSpan Sign
Hi all,
What would you recommend to use for a production application, Java SDK version: 11.33 or API calls.
Am I asking this because checking and testing the SDK seems like sometimes it fails and it has some examples?
Forum topic
OneSpan Sign
Hi,
We have implemented the Reminder emails to the signers by given API and refering the below link:
Reference link:
Setting Reminders Guide
Currently we are getting the reminder emails not on the next day.
Forum topic
OneSpan Sign
Hi Team,
Can anyone provide me the sample JSON for Create Package API which include below features:
1. Reminder Schedule.
2. Review Before Completion.
3. Templates.
Thanks in Advance.
Forum topic
OneSpan Sign
POST /account/senders/{senderUid}/resetpassword
I'm using the above with the REST API to attempt to reset passwords for senders in an account.
Forum topic
OneSpan Sign
Hi All,
Hope someone can shed some light on what i am doing wrong.
In salesforce apex code I am creating package
DateTime dT = System.now();
dT.addDays(7);
ESignLiveExamples.createPackageWithDocumentsExample(
'Demo12', true, 'Demo12 description', dT, 'Hello World, Demo12 is READY'
);
Works gre