From time to time, you might encounter an error using the orchestrator API. In such cases, you receive an error response.
Key | Definition |
---|---|
kind
|
The kind of error encountered. |
msg
|
The message associated with the error. |
details
|
A hash with more information about the error. |
For example, if an environment does not exist for a given request, an error is raised similar to the following:
{
"kind" : "puppetlabs.orchestrator/unknown-environment",
"msg" : "Unknown environment doesnotexist",
"details" : {
"environment" : "doesnotexist"
}
}