How to send multiple document using API when creating the package
Friday, August 3, 2018 at 10:41pmHi,
How to send multiple document using API when creating the package?
Thanks in Adv.
OneSpan Introduces DigipassONE, Bringing a Unified Platform Approach to Authentication Modernization
A new authentication platform helps financial institutions support diverse customer authentication preferences while modernizing at their own pace Learn More
Reply to: How to send multiple document using API when creating the package
Saturday, August 4, 2018 at 02:41amHTTP Request POST /api/packages HTTP Headers Accept: application/json Content-Type: multipart/form-data Authorization: Basic api_key Attachment shows you how to organize the http body. And this is an example for creating a package with two documents and two signers: { "documents":[ { "approvals":[ { "id":"Signature1", "role":"Role1", "fields":[ { "page":0, "top":300, "subtype":"FULLNAME", "optional":true, "height":50, "left":100, "width":200, "type":"SIGNATURE", "name":"ExampleSignature" } ], "name":"" } ], "id":"document1", "name":"Test Document1" }, { "approvals":[ { "id":"Signature2", "role":"Role2", "fields":[ { "page":0, "top":300, "subtype":"FULLNAME", "height":50, "left":100, "width":200, "type":"SIGNATURE", "name":"ExampleSignature" } ], "name":"" } ], "id":"document2", "name":"Test Document2" } ], "status":"SENT", "type":"PACKAGE", "roles":[ { "id":"Role1", "type":"SIGNER", "signers":[ { "id":"Signer1", "email":"[email protected]", "firstName":"1.firstname", "lastName":"1.lastname" } ], "name":"Role1" }, { "id":"Role2", "type":"SIGNER", "signers":[ { "id":"Signer2", "email":"[email protected]", "firstName":"2.firstname", "lastName":"2.lastname" } ], "name":"Role2" } ], "name":"Example Package with multiple documents" }Hope this could help you! DuoReply to: How to send multiple document using API when creating the package
Saturday, August 4, 2018 at 03:35amReply to: How to send multiple document using API when creating the package
Saturday, August 4, 2018 at 05:47amReply to: How to send multiple document using API when creating the package
Friday, March 3, 2023 at 02:15amHi,
Can you share .net code with httpclient