I managed to log in to the API using my credentials and I have received a token.
(Indeed, as has been pointed out in previous posts, if one uses Postman, one has to include the credentials in the body of the request. Their Authentification tab does not work!)
However, if now, I want to do a basic request using the Bearer token, e.g.
https://vrmapi.victronenergy.com/v2/users/xxxxxx/installations
setting the header
X-Authorization: "token"
I receive the follwing error message
{ "success": false, "errors": "No valid authentication scheme sent", "error_code": "invalid_token" }
How is this possible?
PS: I have also tried the Authentication option provided by Postman to set the Bearer token an it does not work either.