retrieve list of layouts using API
Wednesday, July 25, 2018 at 10:37amHi,
1) Is there any API to retrieve list of Layouts for a given sender
2) is there any API to retrieve list of package Ids for a given sender
thanks
Neel
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: retrieve list of layouts using API
Wednesday, July 25, 2018 at 11:24amGET https://sandbox.esignlive.com/api/account/senders/{senderId}/apiKey2.Retrieve list of layouts:GET /api/layouts?from={fromPage}&to={toPage}3. Retrieve list of package ids: You can use completion report feature to retrieve all senders' package ids (in this way you don't necessary to get the sender's api key)GET /api/reports/completion?status={status}&from={fromPage}&to={toPage}Or, you can retrieve packages for this specific sender:GET /api/packages?query={status}&from={fromPage}&to={toPage}Hope this could help you! DuoReply to: retrieve list of layouts using API
Thursday, July 26, 2018 at 03:01amReply to: retrieve list of layouts using API
Thursday, July 26, 2018 at 06:02am&search={keyword}parameter to your API call, but I believe you have to keep the from&to, because otherwise you won't retrieve the actually list.(You can only retrieve one package/layout from my test) Following are detailed API calls I suggest to use: For Retrieve Packages:GET /api/packages?search={keyword}&from={fromPage}&to={toPage}For Retrieve Templates:GET /api/packages?type=TEMPLATE&search={keyword}&from={fromPage}&to={toPage}For Retrieve Layouts:GET /api/layouts?search={keyword}&from={fromPage}&to={toPage}As you may noticed: 1. Template is a kind of package with type of "template" 2.in url, {keyword} and {type}(template here) are not case sensitive. Unlike status of the package for example "DRAFT" or "SENT", these must be upper case. Hope this could help you! DuoReply to: retrieve list of layouts using API
Thursday, July 26, 2018 at 06:17amReply to: retrieve list of layouts using API
Thursday, July 26, 2018 at 06:39amGET /api/reports/completion?status={status}&from={fromPage}&to={toPage}But unfortunately, we don't provide "search" or "type" parameter in Retrieve Completion Report API, which means you can't add a filter for name or retrieve templates by calling this API. And BTW, in "search" parameter, you don't need to use double quotation marks./api/layouts?search=Sample for contract&from=1&to=100is fine. Hope this could help you! Duo