Hi,
Through the ECE ui there is the option of API console on each cluster which sends a request like this
https://<ECE_URL>:12443/api/v0.1/regions/ece-region/clusters/b5fa10fc95c940fdb85c3f2f800f0dae/proxy/_cluster/_search
However when I post this command in the browser I get
{"ok":false,"message":"The supplied authentication is invalid"}
So I have been trying to use
POST /api/v1/users/auth/_refresh
- https://www.elastic.co/guide/en/cloud-enterprise/current/refresh-token.html
to get a token but this is giving me both
{'errors': [{'message': 'HTTP method not allowed, supported methods: [GET]', 'code': 'root.method_not_allowed'}]}
and
{'errors': [{'message': 'The requested resource could not be found', 'code': 'root.resource_not_found'}]}
When I use POST and GET respectively. Not sure if this is a bug in the API?
Thanks