Skip to main content
GET
/
api
/
public
/
announcements
/
active

Active Announcements

Returns all announcements that are currently active and visible to members. Used to display notification banners or announcement widgets on the dashboard.

Authentication

Requires a valid customer bearer token.

Response

Returns an array of active announcement objects.

Examples

Fetch active announcements

GET /api/public/announcements/active
Authorization: Bearer {token}

TypeScript Integration

import endpoints from '@/api/endpoints'

const response = await httpClient.get(endpoints.announcements.active)