87 results matched your search criteria
Forum topic
OneSpan Sign
So I have a current workflow that includes KBA on some signers for various packages. When the signer gets their signing url, we are seeing the attached error on the screen. Sometimes it takes us to where we can then proceed to answer the KBA and sometimes it doesn't.
Forum topic
OneSpan Sign
Guys,
We are looking at this page for creating the Auth token for a user.
https://docs.esignlive.com/content/c_integrator_s_guide/rest_api/authentication_tokens.htm?Highlight=user%20authentication#Create
We have to do a POST request to this api call.
/authenticationTokens/user
The documentation
Forum topic
OneSpan Sign
At my work place, we are trying to get a Sender Authentication token for a package using the below information
/api/authenticationTokens/sender
Authorization and Accept Headers are included.
In Body, in the request payload, inlcuded packageId in JSON.
Getting below error
{
"code": 404,
Forum topic
OneSpan Sign
I'm querying packages from OneSpan Sign REST API. I don't use any filters, so I expect to get all of the packages. There are two, one in the inbox, and one in the drafts folder.
Here's query
Forum topic
OneSpan Sign
I'm trying to get the pdf file via php using curl but I get nothing returned.
When I do the same in Postman I get the PDF file.
Here is my php code
$headers = array('Content-Type: application/json', 'Authorization: Basic '.$ApiKey, 'Accept: application/pdf', 'Connection: Keep-Alive');
$url
Forum topic
OneSpan Sign
Hi, I have a package with status draft, Now I want to update an approval using this route
PUT /packages/{packageId}/documents/{documentId} /approvals/{approvalId}
Here I am updating multiple field values.
Forum topic
OneSpan Sign
Hello. This is not working. I tried below code and get this error message. I am trying to download an in progress transaction since this cannot be done in the UI. I tried the below code but am getting the below error message.
Forum topic
OneSpan Sign
Hey!
I've used this codebase to put up a quick testing app: https://www.esignlive.com/blog/esignlive-how-to-creating-a-simple-php-web-application/
Unfortunately I am stuck for a day or so with a 400 error at this point:
POST /api/packages/A8e11I57ytWC1GHJzzphfLISw04=/documents/signed_docum
Forum topic
OneSpan Sign
Hi,
I want to get pdf document.
In POSTMAN
var request = require("request");
var options = { method: 'GET',
url: 'https://sandbox.esignlive.com/api/packages/{packageId}/documents/{documentId}/pdf',
headers:
{ 'postman-token': '731de084-90fd-c0ac-2fff-346723de7315',
'cache-control': 'n
Forum topic
OneSpan Sign
I've grabbed a completion report and am looping through the packages to archive them.
I've tried the following:
RestClient client;
client = new RestClient("https://apps.e-signlive.com/api");
UrlTemplate template;
template = new UrlTemplate("https://apps.e-signlive.com/api");
St