Environment
The Environment API alows you to retrieve information about Environments within an organization.
Path parameters
orgUUIDstringRequired
A valid organization Uuid
Responses
200
OK
*/*
404
Not Found
*/*
500
Internal Server Error
*/*
get
GET /org/{orgUUID}/environments HTTP/1.1
Host:
Accept: */*
{
"uuid": "text",
"organizationUuid": "text",
"instanceUuid": "text",
"instanceName": "text",
"dns": "text",
"apiURL": "text",
"name": "text",
"removed": true,
"applications": [
{
"version": "text",
"name": "text",
"properties": {
"ANY_ADDITIONAL_PROPERTY": "text"
}
}
],
"permissions": [
"text"
]
}
Path parameters
orgUUIDstringRequired
A valid organization Uuid
envUUIDstringRequired
A valid environment Uuid
Responses
200
OK
*/*
404
Environment {envUUID} not found
*/*
500
Internal Server Error
*/*
get
GET /org/{orgUUID}/environments/{envUUID} HTTP/1.1
Host:
Accept: */*
{
"uuid": "text",
"organizationUuid": "text",
"instanceUuid": "text",
"instanceName": "text",
"dns": "text",
"apiURL": "text",
"name": "text",
"removed": true,
"applications": [
{
"version": "text",
"name": "text",
"properties": {
"ANY_ADDITIONAL_PROPERTY": "text"
}
}
],
"permissions": [
"text"
]
}
Was this helpful?