activepieces
, which has a method called configure
that you should call after the container has been rendered.
async
or defer
attributes.configure
returns a promise which is resolved after authentication is done.Parameter Name | Required | Type | Description |
---|---|---|---|
prefix | ā | string | Some customers have an embedding prefix, like this <embedding_url_prefix>/<Activepieces_url> . For example if the prefix is /automation and the Activepieces url is /flows the full url would be /automation/flows . |
instanceUrl | ā | string | The url of the instance hosting Activepieces, could be https://cloud.activepieces.com if you are a cloud user. |
jwtToken | ā | string | The jwt token you generated to authenticate your users to Activepieces. |
embedding.containerId | ā | string | The html elementās id that is going to be containing Activepiecesās iframe. |
embedding.builder.disableNavigation | ā | boolean | Hides the folder name and back button in the builder, by default it is false. |
embedding.builder.hideLogo | ā | boolean | Hides the logo in the builderās header, by default it is false. |
embedding.builder.hideFlowName | ā | boolean | Hides the flow name and flow actions dropdown in the builderās header, by default it is false. |
embedding.dashboard.hideSidebar | ā | boolean | Controls the visibility of the sidebar in the dashboard, by default it is false. |
embedding.hideFolders | ā | boolean | Hides all things related to folders in both the flows table and builder by default it is false. |
navigation.handler | ā | ({route:string}) => void | If defined the callback will be triggered each time a route in Activepieces changes, you can read more about it here |