curl -X GET "https://api.example.com/api/comunicados?limit=5" \
-H "Authorization: Bearer YOUR_TOKEN"
[
{
"id_comunicado": 1,
"titulo": "Welcome to the Portal",
"contenido": "We are excited to announce the launch of our new self-service portal.",
"fecha_publicacion": "2026-03-01T10:00:00Z",
"activo": true,
"media_url": "https://example.com/media/welcome.jpg",
"fecha_creacion": "2026-02-28T15:30:00Z",
"fecha_actualizacion": "2026-02-28T15:30:00Z"
},
{
"id_comunicado": 2,
"titulo": "System Maintenance Notice",
"contenido": "Scheduled maintenance will occur on Saturday from 2 AM to 4 AM.",
"fecha_publicacion": "2026-03-05T08:00:00Z",
"activo": true,
"media_url": null,
"fecha_creacion": "2026-03-04T12:00:00Z",
"fecha_actualizacion": "2026-03-04T12:00:00Z"
}
]
Retrieve a list of active announcements for the main feed
curl -X GET "https://api.example.com/api/comunicados?limit=5" \
-H "Authorization: Bearer YOUR_TOKEN"
[
{
"id_comunicado": 1,
"titulo": "Welcome to the Portal",
"contenido": "We are excited to announce the launch of our new self-service portal.",
"fecha_publicacion": "2026-03-01T10:00:00Z",
"activo": true,
"media_url": "https://example.com/media/welcome.jpg",
"fecha_creacion": "2026-02-28T15:30:00Z",
"fecha_actualizacion": "2026-02-28T15:30:00Z"
},
{
"id_comunicado": 2,
"titulo": "System Maintenance Notice",
"contenido": "Scheduled maintenance will occur on Saturday from 2 AM to 4 AM.",
"fecha_publicacion": "2026-03-05T08:00:00Z",
"activo": true,
"media_url": null,
"fecha_creacion": "2026-03-04T12:00:00Z",
"fecha_actualizacion": "2026-03-04T12:00:00Z"
}
]
curl -X GET "https://api.example.com/api/comunicados?limit=5" \
-H "Authorization: Bearer YOUR_TOKEN"
[
{
"id_comunicado": 1,
"titulo": "Welcome to the Portal",
"contenido": "We are excited to announce the launch of our new self-service portal.",
"fecha_publicacion": "2026-03-01T10:00:00Z",
"activo": true,
"media_url": "https://example.com/media/welcome.jpg",
"fecha_creacion": "2026-02-28T15:30:00Z",
"fecha_actualizacion": "2026-02-28T15:30:00Z"
},
{
"id_comunicado": 2,
"titulo": "System Maintenance Notice",
"contenido": "Scheduled maintenance will occur on Saturday from 2 AM to 4 AM.",
"fecha_publicacion": "2026-03-05T08:00:00Z",
"activo": true,
"media_url": null,
"fecha_creacion": "2026-03-04T12:00:00Z",
"fecha_actualizacion": "2026-03-04T12:00:00Z"
}
]