Listar pools
curl --request GET \
--url https://api.notifique.dev/v1/sending-poolsconst options = {method: 'GET'};
fetch('https://api.notifique.dev/v1/sending-pools', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.notifique.dev/v1/sending-pools"
response = requests.get(url)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.notifique.dev/v1/sending-pools"
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": [
{}
]
}Sending pools
Listar pools
GET
/
v1
/
sending-pools
Listar pools
curl --request GET \
--url https://api.notifique.dev/v1/sending-poolsconst options = {method: 'GET'};
fetch('https://api.notifique.dev/v1/sending-pools', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.notifique.dev/v1/sending-pools"
response = requests.get(url)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.notifique.dev/v1/sending-pools"
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": [
{}
]
}Esta página foi útil?

