Skip to main content

CREATING A HERE CONNECTION

Collecting Expected Information

Parameters required
UI FieldDescription
EmailEmail of the subscriber's HERE account.
PasswordPassword of the application that you want to register.
APP IDUsed to select a project on you have severals on your account. If empty, the first project will be used as default project.

Email & Password

After you have created your HERE account, you need to retrieve the parameter values that will be required to configure the HERE connector. The only parameters mandatory is the user's email used for the HERE account and your associated password.

APP ID

Inside your HERE Admin Portal, on the section App IDs you can create or found App IDs associated to one of your tracking project. img

Creating a Connection From UI

You must have an active HERE account prior to creating a HERE connection in ThingPark.

You also need to know the parameters that are required to perform this task. To learn more, check Parameters required for connecting to a HERE platform.

  1. Click Connections -> Create -> ThingPark X Iot Flow.

img

Then, a new page will open. Select the connection type : HERE Technologies.

img

  1. Fill in the form as in the example below and click on Create.

img

Note

Parameters marked with * are mandatory.

  • A notification appears on the upper right side of your screen to confirm that the application has been created.

img

  1. After creating the application, you will be redirected to the application details.

img

Changing the Settings after Creation

You can change the settings parameters such as the email or the password after the creation of the HERE application.

To do this, proceed as follows:

  1. Select the Here application for which you want to change one or several parameters.

  2. In the application information dashboard, click on the Edit button corresponding to the parameter you want to change.

img

  1. Enter the new value, and click on the Confirm icon.
  • The Confirmation window displays,

img

  • A notification will inform you that the parameter is updated.

img

Creating a Connection With API

The creation of a connection establishes a bidirectional messaging transport link between ThingPark X IoT Flow and the cloud provider. Events and commands from multiple Devices will be multiplexed over this messaging transport link.

To do this, you need to use the Connections group resource:

  • POST/connections to create a new Connection instance
  • PUT/connections to update a Connection instance
  • DELETE/connections to delete a Connection instance
Note

We follow the REST-full API pattern, when updating configuration properties for a connection resource. Thus, you must also provide the whole configuration again.

Example for creation of a new connection instance :

POST /connections
{
"connectorId": "actility-here-iot",
"name": "My first HERE connection",
"configuration": {
"email": "yourHereAccount@actility.com",
"password": "MyHerePassword",
"appId": "ya5f66oj2vau1EGMvREK",
"description": "My tracking project"
}
}

The following table lists the properties applicable to a connection instance.

JSON FieldDescription
connectorIdMust be set to actility-here-iot for HERE platform.
emailEmail of the subscriber's HERE account.
passwordPassword of the application that you want to register.
appIdThe Application ID defining the project used (blank = first project as default)
Important note

All properties are not present in this example. You can check the rest of these properties in the common parameters section.

Limitations

There are currently no known limitations to the HERE connector.

Displaying information to know if it worked

  1. Connect to your HERE Admin Portal account.

img

  1. Check if you are subscribed to the right project.

img

  1. Connect to your HERE tracking Web App account and go to the Workspace section.

img

  1. You can now verify the list of your devices or add more.

img

Troubleshooting

As for now, there are no detected bugs.