Listar apps conectados
curl --request GET \
--url https://api.notifique.dev/v1/oauth/connectionsconst options = {method: 'GET'};
fetch('https://api.notifique.dev/v1/oauth/connections', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.notifique.dev/v1/oauth/connections"
response = requests.get(url)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.notifique.dev/v1/oauth/connections"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"success": true,
"data": [
{
"id": "clconn_01H...",
"appId": "cloauthapp_01H...",
"appName": "Meu SaaS",
"userEmail": "user@empresa.com",
"scopes": [
"email:send"
],
"createdAt": "2026-08-10T15:00:00.000Z"
}
]
}{
"success": false,
"error": "Unauthorized",
"message": "Invalid API key",
"code": "UNAUTHORIZED"
}{
"success": false,
"error": "Forbidden",
"message": "Missing scope webhooks:manage",
"code": "FORBIDDEN"
}OAuth
Listar apps conectados
Grants ativos (usuários que autorizaram apps no workspace). Escopo oauth_apps:read.
GET
/
v1
/
oauth
/
connections
Listar apps conectados
curl --request GET \
--url https://api.notifique.dev/v1/oauth/connectionsconst options = {method: 'GET'};
fetch('https://api.notifique.dev/v1/oauth/connections', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.notifique.dev/v1/oauth/connections"
response = requests.get(url)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.notifique.dev/v1/oauth/connections"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"success": true,
"data": [
{
"id": "clconn_01H...",
"appId": "cloauthapp_01H...",
"appName": "Meu SaaS",
"userEmail": "user@empresa.com",
"scopes": [
"email:send"
],
"createdAt": "2026-08-10T15:00:00.000Z"
}
]
}{
"success": false,
"error": "Unauthorized",
"message": "Invalid API key",
"code": "UNAUTHORIZED"
}{
"success": false,
"error": "Forbidden",
"message": "Missing scope webhooks:manage",
"code": "FORBIDDEN"
}Esta página foi útil?

