Listar OAuth apps do workspace
curl --request GET \
--url https://api.notifique.dev/v1/oauth/appsconst options = {method: 'GET'};
fetch('https://api.notifique.dev/v1/oauth/apps', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.notifique.dev/v1/oauth/apps"
response = requests.get(url)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.notifique.dev/v1/oauth/apps"
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": "cloauthapp_01H...",
"name": "Meu SaaS",
"clientId": "ntf_oauth_cl_abc123",
"redirectUris": [
"https://meuapp.com/oauth/callback"
],
"scopes": [
"email:send",
"contacts:read"
],
"createdAt": "2026-08-01T10: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 OAuth apps do workspace
Lista apps criados em Developer → OAuth Apps. Escopo oauth_apps:read.
GET
/
v1
/
oauth
/
apps
Listar OAuth apps do workspace
curl --request GET \
--url https://api.notifique.dev/v1/oauth/appsconst options = {method: 'GET'};
fetch('https://api.notifique.dev/v1/oauth/apps', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.notifique.dev/v1/oauth/apps"
response = requests.get(url)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.notifique.dev/v1/oauth/apps"
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": "cloauthapp_01H...",
"name": "Meu SaaS",
"clientId": "ntf_oauth_cl_abc123",
"redirectUris": [
"https://meuapp.com/oauth/callback"
],
"scopes": [
"email:send",
"contacts:read"
],
"createdAt": "2026-08-01T10: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?

