Listar SMS recebidos
curl --request GET \
--url https://api.notifique.dev/v1/sms/inbound \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.notifique.dev/v1/sms/inbound', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.notifique.dev/v1/sms/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/sms/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": "clxx...",
"workspaceId": "clxx...",
"provider": "clxx...",
"externalMoId": "clxx...",
"from": "5511999999999",
"body": "string",
"refer": "string",
"receivedAt": "2025-02-10T14:00:00.000Z",
"relatedSmsLogId": "clxx..."
}
],
"pagination": {
"total": 1,
"page": 1,
"limit": 1,
"totalPages": 1
}
}{
"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."
}SMS
Listar SMS recebidos
Mostra os SMS que chegaram de volta — respostas dos destinatários. Dá para filtrar por data, número ou texto.
GET
/
v1
/
sms
/
inbound
Listar SMS recebidos
curl --request GET \
--url https://api.notifique.dev/v1/sms/inbound \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.notifique.dev/v1/sms/inbound', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.notifique.dev/v1/sms/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/sms/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": "clxx...",
"workspaceId": "clxx...",
"provider": "clxx...",
"externalMoId": "clxx...",
"from": "5511999999999",
"body": "string",
"refer": "string",
"receivedAt": "2025-02-10T14:00:00.000Z",
"relatedSmsLogId": "clxx..."
}
],
"pagination": {
"total": 1,
"page": 1,
"limit": 1,
"totalPages": 1
}
}{
"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."
}Autorizações
ntfSmsBearerAuthntfSmsApiKeyHeader
API Key no header Authorization. Exemplo: Authorization: Bearer sk_live_xxxxx
Parâmetros de consulta
Página (padrão 1).
Itens por página (padrão 20, máx. 100).
Busca no corpo (case insensitive) ou no remetente (se o valor tiver 8+ dígitos).
Filtrar por provedor de SMS (valores inválidos são ignorados).
Opções disponíveis:
SMS_DEV, MOBIZON, COMTELE, SMS_BARATO true ou 1 para retornar só MO correlacionados a um SMS enviado pelo workspace (relatedSmsLogId preenchido).
Início do intervalo em receivedAt (inclusive).
Fim do intervalo em receivedAt (inclusive).
Esta página foi útil?

