Introduction
About Client SDK
Use the Client SDK to interact with the our Apps framework directly from your iframe. The SDK provides a PipefyApp
global object that allows cross-frame communication between your app and the host Pipefy product. For details, see the Apps Client SDK doc.
Getting the SDK
Import the Pipefy Client SDK from https://platform.staticpipefy.com/pipefy-app.js
. Example:
<script src="https://platform.staticpipefy.com/pipefy-app.js"></script>
Using Client SDK
On your Initial page defined by init_url
PipefyApp.initCall({
'pipe-buttons': function(p, pipe) {...}
});
On your iframes inside dropdowns
, modals
, tabs
and sidebars
var p = PipefyApp.init();
Updated 9 months ago