The example on how to run the API call
curl -X POST \
"${KIBANA_URL}/api/data_views/data_view" \
-H "Authorization: ApiKey ${API_KEY}" \
-H 'Content-Type: application/json' \
-H 'kbn-xsrf: true' \
-d '{
"data_view": {
"title": "books*",
"name": "My Books Data View"
}
}
'
doesn't explain where the Kibana URL can be found. I have tested and could not be found under Connection Details.
I was only able to find the Kibana URL from Discover.
Resources and additional context
Couldn't locate the Kibana URL for the Serverless project.
Serverless Docs
Welcome to Elastic Serverless
Description
The example on how to run the API call curl -X POST \ "${KIBANA_URL}/api/data_views/data_view" \ -H "Authorization: ApiKey ${API_KEY}" \ -H 'Content-Type: application/json' \ -H 'kbn-xsrf: true' \ -d '{ "data_view": { "title": "books*", "name": "My Books Data View" } } '
doesn't explain where the Kibana URL can be found. I have tested and could not be found under Connection Details.
I was only able to find the Kibana URL from Discover.
Resources and additional context
Couldn't locate the Kibana URL for the Serverless project.