Detalhe do e-mail recebido
curl --request GET \
--url https://api.notifique.dev/v1/email/inbound/{id} \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.notifique.dev/v1/email/inbound/{id}', 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/{id}"
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/{id}"
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",
"bodyText": "Olá, gostaria de saber o status do pedido #1234.",
"bodyHtml": "<p>Olá, gostaria de saber o status do pedido #1234.</p>",
"mimeMessageId": "<abc@externo.com>",
"inReplyTo": null,
"references": null,
"createdAt": "2026-08-14T15:00:00.000Z",
"emailDomainId": "cldom_01H...",
"rawMetadata": {
"receivedVia": "mx"
},
"emailDomain": {
"id": "cldom_01H...",
"domain": "seudominio.com"
}
}
}{
"success": false,
"error": "Bad Request",
"code": "VALIDATION_ERROR",
"message": "Campo inválido ou ausente."
}{
"success": false,
"error": "Bad Request",
"code": "VALIDATION_ERROR",
"message": "Campo inválido ou ausente."
}{
"success": false,
"error": "Not Found",
"message": "Inbound email not found",
"code": "NOT_FOUND"
}E-mails recebidos
Detalhe do e-mail recebido
Detalhe com bodyText, bodyHtml, threading (mimeMessageId, inReplyTo, references), rawMetadata e emailDomain. Escopo email:inbound:read. Domínio fora dos domainIds da chave → 404 (não vaza existência).
GET
/
v1
/
email
/
inbound
/
{id}
Detalhe do e-mail recebido
curl --request GET \
--url https://api.notifique.dev/v1/email/inbound/{id} \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.notifique.dev/v1/email/inbound/{id}', 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/{id}"
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/{id}"
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",
"bodyText": "Olá, gostaria de saber o status do pedido #1234.",
"bodyHtml": "<p>Olá, gostaria de saber o status do pedido #1234.</p>",
"mimeMessageId": "<abc@externo.com>",
"inReplyTo": null,
"references": null,
"createdAt": "2026-08-14T15:00:00.000Z",
"emailDomainId": "cldom_01H...",
"rawMetadata": {
"receivedVia": "mx"
},
"emailDomain": {
"id": "cldom_01H...",
"domain": "seudominio.com"
}
}
}{
"success": false,
"error": "Bad Request",
"code": "VALIDATION_ERROR",
"message": "Campo inválido ou ausente."
}{
"success": false,
"error": "Bad Request",
"code": "VALIDATION_ERROR",
"message": "Campo inválido ou ausente."
}{
"success": false,
"error": "Not Found",
"message": "Inbound email not found",
"code": "NOT_FOUND"
}Esta página foi útil?

