Restore app backup
curl --request POST \
--url https://api.hyzecloud.com/api/apps/{appId}/backups/restore \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"backupId": "<string>"
}
'import requests
url = "https://api.hyzecloud.com/api/apps/{appId}/backups/restore"
payload = { "backupId": "<string>" }
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({backupId: '<string>'})
};
fetch('https://api.hyzecloud.com/api/apps/{appId}/backups/restore', 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/{appId}/backups/restore"
payload := strings.NewReader("{\n \"backupId\": \"<string>\"\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
Restore app backup
Restaura um backup. Substitui os dados atuais do app.
POST
/
api
/
apps
/
{appId}
/
backups
/
restore
Restore app backup
curl --request POST \
--url https://api.hyzecloud.com/api/apps/{appId}/backups/restore \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"backupId": "<string>"
}
'import requests
url = "https://api.hyzecloud.com/api/apps/{appId}/backups/restore"
payload = { "backupId": "<string>" }
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({backupId: '<string>'})
};
fetch('https://api.hyzecloud.com/api/apps/{appId}/backups/restore', 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/{appId}/backups/restore"
payload := strings.NewReader("{\n \"backupId\": \"<string>\"\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.
Parâmetros de caminho
Minimum string length:
1Corpo
application/jsonapplication/x-www-form-urlencodedmultipart/form-data
Minimum string length:
1Resposta
default
Response
Última modificação em 1 de setembro de 2026

