Delete all app backups
curl --request DELETE \
--url https://api.hyzecloud.com/api/apps/{appId}/backups \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.hyzecloud.com/api/apps/{appId}/backups"
headers = {"Authorization": "Bearer <token>"}
response = requests.delete(url, headers=headers)
print(response.text)const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.hyzecloud.com/api/apps/{appId}/backups', 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}/backups"
req, _ := http.NewRequest("DELETE", 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
Delete all app backups
Exclui todos os backups do app.
DELETE
/
api
/
apps
/
{appId}
/
backups
Delete all app backups
curl --request DELETE \
--url https://api.hyzecloud.com/api/apps/{appId}/backups \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.hyzecloud.com/api/apps/{appId}/backups"
headers = {"Authorization": "Bearer <token>"}
response = requests.delete(url, headers=headers)
print(response.text)const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.hyzecloud.com/api/apps/{appId}/backups', 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}/backups"
req, _ := http.NewRequest("DELETE", 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

