Deploy app from uploaded ZIP
curl --request POST \
--url https://api.hyzecloud.com/api/apps/deploy \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"file": "File",
"name": "<string>",
"memoryMB": 123
}
'import requests
url = "https://api.hyzecloud.com/api/apps/deploy"
payload = {
"file": "File",
"name": "<string>",
"memoryMB": 123
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({file: 'File', name: '<string>', memoryMB: 123})
};
fetch('https://api.hyzecloud.com/api/apps/deploy', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.hyzecloud.com/api/apps/deploy"
payload := strings.NewReader("{\n \"file\": \"File\",\n \"name\": \"<string>\",\n \"memoryMB\": 123\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}Applications
Deploy app from uploaded ZIP
Faz deploy de um app a partir de um arquivo ZIP (multipart). startupCommand é opcional — omita ou use auto para detecção automática (Vite, Next, Node, estático, Python).
POST
/
api
/
apps
/
deploy
Deploy app from uploaded ZIP
curl --request POST \
--url https://api.hyzecloud.com/api/apps/deploy \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"file": "File",
"name": "<string>",
"memoryMB": 123
}
'import requests
url = "https://api.hyzecloud.com/api/apps/deploy"
payload = {
"file": "File",
"name": "<string>",
"memoryMB": 123
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({file: 'File', name: '<string>', memoryMB: 123})
};
fetch('https://api.hyzecloud.com/api/apps/deploy', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.hyzecloud.com/api/apps/deploy"
payload := strings.NewReader("{\n \"file\": \"File\",\n \"name\": \"<string>\",\n \"memoryMB\": 123\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}Autorizações
API key com prefixo hyze_. Crie no dashboard em Settings → Developer.
Corpo
application/jsonapplication/x-www-form-urlencodedmultipart/form-data
Minimum string length:
1Opções disponíveis:
node, bun, python Minimum string length:
1Resposta
default
Response
Última modificação em 1 de setembro de 2026

