List announcements (for managers)

GET/manage/communities/:communityId/announcements

List community announcements for management. Admins only.

AuthLogin required

Path parameters

communityIdstringrequired

Community ID or slug.

Query parameters

pagenumber

Page number (1-based). Default 1.

perPagenumber

Items per page. Default 20.

Notes

When accessed with an OAuth access token, `email` fields are recursively removed from the response JSON (they are retained for session-authenticated dashboard access).

Response

FieldTypeDescription
announcementsAnnouncement[]Array of announcements.
pageInfoobjectPagination info.
Request
curl https://api.4s.link/manage/communities/COMMUNITY_ID/announcements \
-H "Authorization: Bearer 4s_at_..."
Example response
{
"announcements": [
{
"id": "an1a2b3c-...",
"title": "次回イベントのお知らせ",
"content": "...",
"createdAt": "2026-08-18T00:00:00.000Z"
}
],
"pageInfo": { "totalCount": 100, "totalPages": 5, "page": 1, "perPage": 20 }
}