/automationsUsuárioListar fluxos de automação
Query params
| Nome | Tipo | Obrig. | Default | Descrição |
|---|---|---|---|---|
status | string | Não | - | draft, active, paused, archived |
page | number | Não | 1 | Página |
limit | number | Não | 50 | Itens por página |
Exemplo
curl -X GET "https://envios.arrobamail.com/v3/api/automations" \
-H "Authorization: Bearer $TOKEN"Resposta 200
{
"flows": [
{
"id": 7, "name": "Bienvenida nuevos suscriptores",
"status": "active", "triggerType": "subscribe",
"totalEnrolled": 1250, "active": 85,
"dateCreated": "2025-04-10 08:00:00"
}
],
"total": 5, "page": 1, "limit": 50
}