Skip to content

Digital.ai Agility - Usage

To use the Digital.io Agility plug-in, the plug-in must be loaded and an instance created before you can configure the plug-in integration. Configuration properties are defined using the product user interface or a JSON file.

Integration type

The Digital.io Agility plug-in supports scheduled events integration which are listed in the following table.

NameDescription
Sync Digital.ai Agility WorkItemsQuery Digital.ai Agility for Work Items in a group of projects

Integration

There are two methods to integrate the plug-in:

  • Using the user interface
  • Using a JSON file

The tables in the Configuration properties topic describe the properties used to define integrations.

Using the user interface

  1. From the Plugins page, click Settings > Integrations > Plugins.
  2. Under the Action column for the plug-in, click Add Integration.
  3. On the Add Integration page enter values for the fields used to configure the integration and define communication.
  4. Click Save.

Using a JSON file

The JSON file contains the information for creating a value stream. Within the JSON file is a section for integrations. It is in this section that plug-in properties can be defined.

  1. From a value stream page, download the value stream map. The value stream map is a JSON file used to define integrations.
  2. Edit the JSON file to include the plug-in configuration properties.
  3. Save and upload the JSON file. This replaces the current JSON file with the new content.
  4. View the new integration on the Integrations page.

Configuration properties

The following tables describe the properties used to configure the integration. Each table contains the field name when using the user interface and the property name when using a JSON file.

  • The General Configuration Properties table describes configuration properties used by all plug-in integrations.
  • The Digital.ai Agility Configuration Properties table describes the Digital.ai Agility configuration properties that define the connection and communications with the Digital.ai Agility server. When using the JSON method to integrate the plug-in these properties are coded within the properties configuration property.

General Configuration Properties

NameDescriptionRequiredProperty Name
NAThe version of the plug-in that you want to use. To view available versions, click the Version History tab. If a value is not specified, the latest version is used.Noimage
Integration NameAn assigned name to the value stream.Yesname</td
Logging LevelThe level of Log4j messages to display in the log file. Valid values are: all, debug, info, warn, error, fatal, off, and trace.NologgingLevel
NAList of configuration properties used to connect and communicate with the Digital.ai Agility server. Enclose the properties within braces.Yesproperties
NAThe name of the tenant.Yestenant_id
NAUnique identifier assigned to the plug-in. The value for the Digital.ai Agility Server plug-in is ucv-ext-agilityYestype

Digital.ai Agility Configuration Properties

NameTypeDescriptionRequiredHiddenProject Name
AccessTokenSecureThe access token to authenticate with the Digital.io Agility server. Either the Password or AccessToken property must contain a value. Do not specify a value for both at the same time.NoNoaccessToken
PasswordSecureThe password used to authenticate with the Digital.io Agility server. Either the Password or AccessToken property must contain a value. Do not specify a value for both at the same time.NoNopassword
ProjectsArrayA list of Digital.io Agility projects from which work items are imported.YesNoprojects
Proxy PasswordSecureThe password used to authenticate with the proxy server.NoYesproxyPassword
Proxy ServerStringThe URL of the proxy server including the port number. The URL protocol can be http or https.NoYesproxyServer
Proxy User NameStringThe user name used to authenticate with the proxy server.NoYesproxyUsername
User Access KeySecureThe user access key generated from DevOps Velocity used to authenticate with the DevOps Velocity server.NoYesucvAccessKey
URLStringThe URL of the Digital.io Agility server.YesNoserverUrl
User IDStringThe user name used to authenticate with the Digital.io Agility server.YesNouserId

Example

The following example can be used as a template to define the integration within the JSON file for a value stream. Copy and paste the template into the JSON file and make the appropriate changes.


{
"type": "ucv-ext-agility",
"tenant_id": "*tenant\_ID*",
"name":
"Digital.ai",
"properties":{
"serverUrl":"https://www53.v1host.com/XYZ",
"projects" : ["Sample: Call Center
Product"],
"userId" : "admin",
"accessToken" : "*access\_token*",
"ucvAccessKey":"IBM_DevOps_Velocity_access_key",

"proxyServer": "http://123.456.1.4:1128",
"proxyUsername":"admin",
"proxyPassword":"12345"
}``
}``