Installing Nintex Integration

Table of Contents

Overview

This article describes how to install and configure the KanBo Nintex Integration in a SharePoint environment. After completing the installation, you can use Nintex workflows to automate actions in KanBo, such as creating and updating spaces, cards, and users.

For more information about using the integration and available workflow actions, see the Nintex Integration article.

Installation

  1. Add WSP to your SharePoint:
Add-SPSolution -LiteralPath {pathToWspFile}

  1. Install the solution:

 Install-SPSolution -Identity kanbonintexactions.wsp -GACDeployment -AllWebApplications

or:

Install-SPSolution -Identity kanbonintexactions.wsp -GACDeployment -WebApplication {WebAppName}

  1. Go to Central Administration and activate the Web Application feature on your web app.

  1. Add the following entry to the "plugins" section of the KanBo appsettings.json file:

{
    "type": "auth.app",
    "issuer": "nintex-actions-cert",
    "children": [
     {
      "type": "signature",
      "algo": "rs256",
      "children": [
       [
        "cert",
        {
         "type": "x509-file",
         "file": "{path to .cer file}"
        }
       ]
      ]
     },
     [
      "mapper",
      {
       "type": "service",
       "name": "Nintex service",
       "roles": "*"
      }
     ],
     [
      "mapper",
      {
       "type": "user"
      }
     ],
     [
      "mapper",
      {
       "type": "login"
      }
     ]
    ]
   },

Update

Update the existing WSP solution:

Update-SPSolution -Identity kanbonintexactions.wsp -LiteralPath {pathToWspFile} -GACDeployment -AllWebApplications

Was this article helpful?

Please, contact us if you have any additional questions.