Reset the secret token for an APM resource.
Reset the token of an APM resource.
Path parameters
-
Identifier for the Deployment.
-
User-specified RefId for the Resource (or '_main' if there is only one).
Responses
-
Response containing the new secret token, plan to apply it starts
-
Reset token is not supported when APM is managed by Elastic Agent. (code:
clusters.cluster_plan_state_error
) -
- The Deployment specified by {deployment_id} cannot be found. (code:
deployments.deployment_not_found
) - The Resource specified by {ref_id} cannot be found. (code:
deployments.deployment_resource_not_found
)
- The Deployment specified by {deployment_id} cannot be found. (code:
-
We have failed you. (code:
deployments.deployment_resource_no_longer_exists
)
POST /deployments/{deployment_id}/apm/{ref_id}/_reset-token
curl \
-X POST https://api.elastic-cloud.com/api/v1/deployments/{deployment_id}/apm/{ref_id}/_reset-token
Response examples (202)
{
"apm_id": "string",
"secret_token": "string",
"diagnostics": {}
}
Response examples (400)
# Headers
x-cloud-error-codes: clusters.cluster_plan_state_error
# Payload
{
"errors": [
{
"code": "string",
"message": "string",
"fields": [
"string"
]
}
]
}
Response examples (404)
# Headers
x-cloud-error-codes: deployments.deployment_not_found
# Payload
{
"errors": [
{
"code": "string",
"message": "string",
"fields": [
"string"
]
}
]
}
Response examples (500)
# Headers
x-cloud-error-codes: deployments.deployment_resource_no_longer_exists
# Payload
{
"errors": [
{
"code": "string",
"message": "string",
"fields": [
"string"
]
}
]
}