Listar e-mails recebidos
curl --request GET \
--url https://api.notifique.dev/v1/email/inbound \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.notifique.dev/v1/email/inbound', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.notifique.dev/v1/email/inbound"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.notifique.dev/v1/email/inbound"
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))
}{
"success": true,
"data": [
{
"id": "clinb_01H...",
"from": "cliente@externo.com",
"to": "suporte@seudominio.com",
"subject": "Dúvida sobre pedido",
"preview": "Olá, gostaria de saber o status do pedido #1234...",
"createdAt": "2026-08-14T15:00:00.000Z",
"emailDomainId": "cldom_01H...",
"emailDomain": {
"id": "cldom_01H...",
"domain": "seudominio.com"
}
}
],
"pagination": {
"total": 42,
"page": 1,
"limit": 20,
"totalPages": 3
}
}{
"success": false,
"error": "Bad Request",
"message": "domainId does not exist in this workspace",
"code": "BAD_REQUEST"
}{
"success": false,
"error": "Bad Request",
"code": "VALIDATION_ERROR",
"message": "Campo inválido ou ausente."
}{
"success": false,
"error": "Forbidden",
"message": "Access denied to this email domain. Check API key domain restrictions.",
"code": "FORBIDDEN"
}E-mails recebidos
Listar e-mails recebidos
Lista e-mails inbound persistidos no workspace. Escopo email:inbound:read. Filtros: q (busca em subject, from, to, bodyText), domainId, dateFrom, dateTo (createdAt). Resposta com preview (280 caracteres), emailDomain e paginação. Com domainIds na chave, só e-mails dos domínios permitidos (igual a /v1/email/messages).
GET
/
v1
/
email
/
inbound
Listar e-mails recebidos
curl --request GET \
--url https://api.notifique.dev/v1/email/inbound \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.notifique.dev/v1/email/inbound', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.notifique.dev/v1/email/inbound"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.notifique.dev/v1/email/inbound"
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))
}{
"success": true,
"data": [
{
"id": "clinb_01H...",
"from": "cliente@externo.com",
"to": "suporte@seudominio.com",
"subject": "Dúvida sobre pedido",
"preview": "Olá, gostaria de saber o status do pedido #1234...",
"createdAt": "2026-08-14T15:00:00.000Z",
"emailDomainId": "cldom_01H...",
"emailDomain": {
"id": "cldom_01H...",
"domain": "seudominio.com"
}
}
],
"pagination": {
"total": 42,
"page": 1,
"limit": 20,
"totalPages": 3
}
}{
"success": false,
"error": "Bad Request",
"message": "domainId does not exist in this workspace",
"code": "BAD_REQUEST"
}{
"success": false,
"error": "Bad Request",
"code": "VALIDATION_ERROR",
"message": "Campo inválido ou ausente."
}{
"success": false,
"error": "Forbidden",
"message": "Access denied to this email domain. Check API key domain restrictions.",
"code": "FORBIDDEN"
}Autorizações
ntfEmailBearerAuthntfEmailApiKeyHeader
API Key no header Authorization. Exemplo: Authorization: Bearer sk_live_xxxxx
Parâmetros de consulta
Busca em subject, from, to, bodyText.
Esta página foi útil?

