API for getting the list of Roles
Monday, May 20, 2019 at 10:26amHi Team,
Is there an API that we can use to retrieve the list of roleIds already on the package?
thanks,
Sara
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: API for getting the list of Roles
Monday, May 20, 2019 at 12:35pmGET /api/packages/{packageId}/roles Example response: { "results":[ {role_node1}, {role_node2} ], "count":2 }By looping through the results array and parsing the role node for Id attribute, you'll find all available role ids. Hope this could help! Duo