Skip to content

Alert Task – Basic Auth

We have seen how an Alert task can be set up in the XO Platform here. In this section, we will see how basic authorization for the alert tasks can be set up.

How it Works

When basic authorization is used for a task, the XO Platform automatically prompts the user for login credentials to access the web application or web service, as shown in the following illustration. authorize to use account

After the end-user is authorized, the settings are saved using the following naming syntax:

{{ First Name }} {{ Last Name }} {{ VA Name }} {{ Account # }} {{ Sequence # }}

For example, John Smith’s Twitter Account #1.

The XO Platform can access the web application or web service for all future task requests using this account. In addition, the end-user can reuse the account for other tasks for the same Virtual Assistant.

General Setup

You can use Basic Authorization when configuring API Requests within Alert Tasks. To configure authorization using Basic Authorization:

  1. Select the VA you want to work with.
  2. Go to Build > Conversation Skills > Alert Tasks.
  3. Select the task you want to work with.
  4. Click the API Request tab within the Alert Task.
  5. Expand the Authorization section and click Create New to configure a new authorization. create new authorization

  6. Next, the New Authorization Mechanism window opens, as shown in the illustration below. new auth mechanism

To define Basic Authorization, select Basic Auth in the Authorization Type field. Then specify a Name for the authorization to be displayed in the XO Platform user interface. Next, please make your configuration according to the steps below.

Tenancy

If required, in the Subdomain section, select Yes if the base URL for a web application or user interface uses a tenant name in the URL. For example, kore is the tenant organization for a web service using tenants as www.kore.someCompany.com. In the following example configuration, the tenancy URL contains the {tenant} organization placeholder. set tenancy

Form Fields

If the default username and password fields do not meet your needs, you can add new fields displayed to the end-user by adding authorization form fields. To add fields on the authorization form, click + Add Form Field. The following illustration is an example of a definition to add a password field to the authorization dialog. Form fields

The following table describes the fields used to define an authorization IDP form field.

FIELD NAME DESCRIPTION
Field Title Specify the name of the field displayed to the end-user in the authentication dialog.
Field Key The value represents the end-user input value to the authenticating service.
Help Hint The help text displayed in the field to describe what should be entered into the field.
Field Type When Advanced Options is selected, specify the type of field displayed in the end-user interface to collect the user input assigned as the value for the Field Key, one of:
  • Textbox
  • Password
Mandatory When Advanced Options is selected, select if the end-user must define this field to complete authentication.
Data Type When Advanced Options is selected, specify the type of data expected as input from the end-user. For example, String.
Visibility When Advanced Options is selected, specify if the authentication field should be visible, hidden, or displayed as read-only.

Authorization Fields

By default, authorization fields are configured as part of the header of the task request message. If your task request requires additional authorization fields or the expected authorization is not part of the header, for example, a verification code, click + Add Authorization Field and then define the fields as shown in the following illustration. auth fields

  1. In the Field Type field, you can select one of the following depending on where in the task request message and the type of authorization fields that are required. Header – The VA expects the authorization fields as part of the header of the request.Payload – The assistant expects the authorization fields as part of the content of the body of the request. Query String – The VA expects the authorization fields as a query in the body of the request. Path Param – The VA expects the authorization fields as part of the URL path for the request.
  2. In the Field Key field, enter the name of the field for the selected Field Type.
  3. In the Field Value field, enter the value for the Field Key specified.
  4. Click Done. The new authorization field is added in the Authorization Fields section.
  5. To add additional authorization fields, click Add in the Authorization Fields section.
  6. In the Authorization Check URL field, optionally define a URL that is used to test the authentication settings from the XO Platform before you deploy the task with the authorization mechanism. You can use dynamic fields, path parameter fields, query fields, and so forth, to define the test URL, for example, https://kore.someCompany.com/sap/opu/odata/sap/{{authfield1}}/?$format=json
  7. Click Save to save the authorization settings and close the New Authorization Mechanism dialog.

Testing

After you save the authentication, if you have defined an Authorization Check URL for your new authorization type, you can test your authorization definition on the Authorization tab.

  1. Click Test Authorization before continuing to develop the remaining steps of your task. test authorization

  2. After you click Test Authorization, the Test Authorization window is displayed and populated with the URL you specified in the Authorization Check URL section, as shown in the following illustration.

test authorization window

To configure the Test Authorization – Basic Auth, follow the below steps:

  1. In the Auth Check URL field, verify or enter the URL to test the authentication configuration.
  2. If your assistant uses subdomains, the Tenancy field is displayed and you must specify the tenant.
  3. Enter your User Name and Password for the web service.
  4. Select the content type expected for the URL in the Content-Type field.
  5. For testing the URL, the Method field is read-only and set to GET.
  6. Click Test to begin the authorization test.

When the validation of authentication is complete, the Test Authorization window is closed and the results of the validation, either success or failure, is displayed to the immediate right of the Test Authorization button as shown in the following illustration.

If the authorization fails, the Auth Test Failed message is displayed along with the Headers and Response tabs as shown in the following illustration. auth fails message