Hi,
I've created and deployed a NodeJS application that uses the cf-nodejs-logging-support library to emit logs. SAP Cloud Foundry has a Loggregator syhstem that is used to stream logs, container metrics and custom metrics. SAP Cloud platform also uses the Elastic Stack (open source logging platform Elasticsearch, Logstash, Kibana) as an application log service. to stream the application-logs to the log service I have to first bind a logging service instance that drains the logs and metrics that are streamed from the loggregrator system.
I have completed these steps now I can access the visualizations of these metrics and logs in the application logging service at the following url: https://logs.<Landscape Domain>.
I'm merely interested in the http-requests that are emitted from my application and would like to extract them from a panel in the dashboard. this can be done manually by inspecting a panel and copying the response from a request sent to the elasticsearch API as seen in the following image:

my question is how can I access the underlying API? for instance when I try to make a http POST request with curl to the following URL https://logs.<Landscape Domain>/api/saved_objects/bulk_get
i get the following response:
< HTTP/1.1 302 Found< Content-Length: 0< Date: Thu, 13 Feb 2020 08:31:18 GMT< Location: https://login.cf.<landscape_domain>/oauth/authorize?client_id=sleeve-app-logs&redirect_uri=https%3A%2F%2Flogs.<landscape_domain>%2Fauthorization&response_type=code&state=366d8632-5fd7-4db8-a583-408c3d1e1333 < Set-Cookie: goauth-goauth-1=MTU4MTU4MjY3OHxVdEZrbElDTEFrOTdVQUhWMVlRSW8yUmNSUkFMSnFJSmVwOXNNdmQ2OFo0NjNUenpRMVVRdHBwUFZTVUtkNE14bUJzUEE0b2xBRWYtX29yVFZ0WXlVZ2VfQkNyczNfQU15N1VXRW8yYnUzVGtndl9HT0ROS19LbGF0SVprVW1xVFVMZkoyQlJMQTFza3wUBOUUZ9OItvbb-9E8edZFJiC_hXdP3-6Ru63TVwhn6w==; Path=/; HttpOnly < Set-Cookie: goauth-goauth-2=; Path=/; Expires=Wed, 13 Feb 2019 08:31:18 GMT; Max-Age=0; HttpOnly < X-Aker-Request-Id: 3e40f0c6-5a19-acf5-961c-85127c664c09 < X-Vcap-Request-Id: 9c12a99c-3f6d-40ea-683c-3d82c4db1990< Strict-Transport-Security: max-age=31536000; includeSubDomains; preload;
how do i authenticate this request to allow me the access the underlying url?