How can we help you today?

Go ahead and ask us anything.

See the KanBo newest version.

Configuring Power Automate with Your KanBo

Last modified:


This article will guide You trough configuring Microsoft Power Automate with Your KanBo.

1) Contact support about the KanBo Oauth package

After you receive the package, move it to the /bin folder and make sure you have the line:

<plugin-loader-assembly name="KanBo.Oauth"></plugin-loader-assembly

in your <plugins> section in web.config

Image 12466

2) Put this before your </plugins> line:

<auth.oauth issuer="[issuer name]">
    <cert type="x509-store" store-name="my" store-location="localmachine" key="thumbprint"
        value="[thumbprint value]" valid-only="false">
</cert></auth.oauth>

Image 12470

3) Create a certificate 

Generate a new certificate. Use this Powershell command:

Change KanBo credentials to the display name of the cert you require. Change the kanbo_azure to your name.

$cert = New-SelfSignedCertificate -DnsName "kanbo credentials" -CertStoreLocation "cert:\LocalMachine\My"
	$cert | Export-Certificate -FilePath kanbo_azure.cer

2. Go to MMC -> certificates -> local machine and export the certificate.

Image 12247

4) Configure your certificate in Azure
https://docs.microsoft.com/azure/app-service/configure-ssl-certificate

Go to KanBo Web App and select TLS/SSL settings.

Image 12259

Go to Prive key certificate and Upload certificate.

Image 12260

Upload the PFX file and type the password. Then hit upload.

Image 12261

Go to configuration and edit the WEBSITE_LOAD_CERTIFICATES value.

In case, you use only one cert for KanBo, type the Thumbprint of the new cert in value.

In case you use more than one certs in KanBo, make sure you type " * " in value field.

Click OK to save the changes.

Image 12262

12. Go to the Kudu editor. In your Azure Web App Development Tools, select Advanced Tools.

Image 12254

Open the link.

Image 12255

Select debug console -> Powershell.

Image 12256

Go to site -> wwwroot and open web.config in editor.

Change the value in the configuration you applied before.

5) Go to https://powerautomate.authkanbo.com/kanbo/new-target?url=[your KanBo url]&iss=[issuer name]

6) The site will generate values for you. 
Paste the <client> code before </auth.oauth> line

Then send the Targets array to the support team at support@kanboapp.com, where they will paste it in the right areas.

Image 12478


7) Now you can start using power automate!


Is this article helpful for you?