Stop a database
curl --request POST \
--url https://api.hyzecloud.com/api/databases/{databaseId}/stop \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.hyzecloud.com/api/databases/{databaseId}/stop"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.hyzecloud.com/api/databases/{databaseId}/stop', 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/databases/{databaseId}/stop"
req, _ := http.NewRequest("POST", 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))
}Databases
Stop a database
Para o banco.
POST
/
api
/
databases
/
{databaseId}
/
stop
Stop a database
curl --request POST \
--url https://api.hyzecloud.com/api/databases/{databaseId}/stop \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.hyzecloud.com/api/databases/{databaseId}/stop"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.hyzecloud.com/api/databases/{databaseId}/stop', 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/databases/{databaseId}/stop"
req, _ := http.NewRequest("POST", 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

