baradmahendra

How to assign right for send package to another user using rest api

0 votes
Hello, I have created package and send successfully. How to assign right for send package to another user(who is sender of document on particular package) using rest api.?? I have tried with delegates and added sender on my account but can't able to give right as delegate using rest api ?? is it possible ?? and how redirect using senderAuthenticationtoekn on particular package as sender(not owner) from our system ?? Thanks

Approved Answer

Reply to: How to assign right for send package to another user using rest api

0 votes
You will have to contact our support team for this. They will be able to change the signing date format to anything you like.
Haris Haidary OneSpan Technical Consultant

Reply to: How to assign right for send package to another user using rest api

1 votes
Hey, To create a package on behalf of one of your sender, you add a "sender" object when building your json to create a package. The sample json below will do that:
{
  "sender": {
    "email": "[email protected]",
    "firstName": "John",
    "lastName": "Smith",
    "company": "eSignLive",
    "title": "Manager"
  },
  "status": "DRAFT",
  "name": "this_test",
  "type": "PACKAGE"
}
Once you have your sender authentication token, you can redirect your sender by building the following URL: https://sandbox.esignlive.com/auth?authenticationToken={senderAuthenticationToken}&target=https://sandbox.esignlive.com/packages/{packageId}
Haris Haidary OneSpan Technical Consultant

Reply to: How to assign right for send package to another user using rest api

0 votes
Thanks for Help. My signer sign date current is yyyy-mm-dd and i want the date format in dd/mm/yyyy how to set date format using rest api ??? Thanks

Hello! Looks like you're enjoying the discussion, but haven't signed up for an account.

When you create an account, we remember exactly what you've read, so you always come right back where you left off