/campaignsUserList campaigns with pagination
Query params
| Name | Type | Req. | Default | Description |
|---|---|---|---|---|
limit | number | No | 25 | Items per page |
offset | number | No | 0 | Offset |
status | string | No | - | active, completed, draft, paused, stopped |
q | string | No | - | Search by name or subject |
Example
curl -X GET "https://envios.arrobamail.com/v3/api/campaigns" \
-H "Authorization: Bearer $TOKEN"Response 200
{
"paging": { "total": 150, "limit": 25, "offset": 0, "pages": 6 },
"list": [
{
"id": 12345,
"encid": "1A2B3C",
"camp_name": "Newsletter Mayo",
"asunto": "Novedades de Mayo 2025",
"status": 3,
"from_name": "Empresa ABC",
"from_mail": "info@Empresa ABC.com",
"dateCreated": "2025-05-01 10:30:00",
"suscribers": 5000,
"sents": 4850,
"stats": { "opens": 1200, "clicks": 340, "bounces": 45, "unsubscribes": 12 }
}
]
}