I’m trying to connect TimeXtender to a REST API that uses JWT authentication. The API requires a JWT token for authorization, and I need to know the correct way to generate the token and refresh it.
Here is how i do it in POSTMAN:
I have an endpoint: {baseurl}/login, that generates a token using POST - the token expires every hour

I then use that token to get data from another endpoint using GET: {baseurl}/meters
