Get app environment variables
curl --request GET \
--url https://api.hyzecloud.com/api/apps/{appId}/env \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.hyzecloud.com/api/apps/{appId}/env"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.hyzecloud.com/api/apps/{appId}/env', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.hyzecloud.com/api/apps/{appId}/env"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}Applications
Get app environment variables
Retorna as variáveis de ambiente do app (decifradas).
GET
/
api
/
apps
/
{appId}
/
env
Get app environment variables
curl --request GET \
--url https://api.hyzecloud.com/api/apps/{appId}/env \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.hyzecloud.com/api/apps/{appId}/env"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.hyzecloud.com/api/apps/{appId}/env', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.hyzecloud.com/api/apps/{appId}/env"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}Última modificação em 1 de setembro de 2026

