Get the status of an Observability project
The response indicates whether the project is initialized and ready to be used. The phase will change from "initializing" to "initialized" when the project is ready.
Path parameters
-
id
string Required The ID of the project
Format should match the following pattern:
^[a-z0-9]{32}$
.
GET
/api/v1/serverless/projects/observability/{id}/status
curl \
--request GET 'https://api.elastic-cloud.com/api/v1/serverless/projects/observability/{id}/status' \
--header "Authorization: $API_KEY"
Response examples (200)
{
"phase": "initializing"
}
Response examples (404)
{
"errors": [
{
"message": "Explicative error message",
"code": "code.error"
}
]
}