REST API

Swagger UI

NDU REST API may be explored using Swagger UI. You can explore REST API of the live-demo server using this Swagger UI link.

To explore REST API provided by NDU Professional Edition please use the following Swagger UI link.

Once you will install NDU server you can open UI using the following URL:

1
http://YOUR_HOST:PORT/swagger-ui.html

REST API Auth

NDU uses JWT for request auth. You will need to populate “X-Authorization” header using “Authorize” button in the top-right corner of the Swagger UI.

image

In order to get the JWT token, you need to execute the following request:

In case of local installation:

In case of live-demo server:

resources/get-token.sh
1
curl -X POST --header 'Content-Type: application/json' --header 'Accept: application/json' -d '{"username":"tenant@thingsboard.org", "password":"tenant"}' 'http://THINGSBOARD_URL/api/auth/login'
resources/get-token-response.json
1
{"token":"$YOUR_JWT_TOKEN", "refreshToken":"$YOUR_JWT_REFRESH_TOKEN"}

Java REST API Client

NDU team provides client library written in Java to simplify consumption of the REST API. Please see Java REST API Client documentation page for more details.