PFM
Note: Quovo PFM is only available for select qualified customers. Please contact us to see if PFM modules can be made available to you.
Quick Setup
curl -X GET \ -H "Authorization: Bearer a724809d37d0a21b7e9257f45cee416f5aec61993ab4b09e" \ "https://api.quovo.com/v3/users/12345/ui_token"Step 2: Load the UI Javascript Library Make sure you are loading the latest Quovo library at: <script type=“text/javascript” src=“https://app.quovo.com/ui.js“></script> Step 3: Set Up the Place in Your Application That Will Host the Quovo Widget Below is an example of the element that will hold the embedded Quovo module iframe:
<style> #quovo-accounts-module, #quovo-allocation-module { height: 400px; width: 600px; } </style>
Note: iframes will adopt the full width and height of the parent element by default.
<!-- {token} is generated by a backend process every time the page is loaded. --> <script> Quovo.embed({ token: {token}, elementId: 'quovo-accounts-module', moduleName: 'accounts', }); </script> <div id="quovo-accounts-module"></div>Now you can start embedding all of Quovo’s robust and responsive modules into your website or application to better understand how it will integrate with your experience. You can access our UI reference docs here.