List GitHub repositories
curl --request GET \
--url https://api.hyzecloud.com/api/integrations/github/repos \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.hyzecloud.com/api/integrations/github/repos"
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/integrations/github/repos', 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/integrations/github/repos"
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))
}GitHub Integrations
List GitHub repositories
Lista os repositórios acessíveis pela integração.
GET
/
api
/
integrations
/
github
/
repos
List GitHub repositories
curl --request GET \
--url https://api.hyzecloud.com/api/integrations/github/repos \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.hyzecloud.com/api/integrations/github/repos"
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/integrations/github/repos', 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/integrations/github/repos"
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

