This tutorial describes how to gain access to the API using Postman.
https://localhost:5163/Identity/Auth/Login and set the method to POST.X-API-Key and set the value to the API Key.
{
"username": "<User name>",
"password": "<Password>"
}

accessToken and refreshToken in the response.https://localhost:5163/Navigation/Realms and set the method to GET.X-API-Key and set the value to the API Key.Authorization and set the value to Bearer <accessToken>.
LGDXRobot Cloud allows refreshing the access token, which is useful for users in third-party UIs that do not require re-authentication. The refresh token can only be used once.
https://localhost:5163/Identity/Auth/Refresh and set the method to POST.X-API-Key and set the value to the API Key.Authorization and set the value to Bearer <accessToken>.
{
"refreshToken": "<refreshToken>"
}

accessToken and refreshToken will be shown in the response.