List announcements (for managers)
GET
/manage/communities/:communityId/announcementsList community announcements for management. Admins only.
| Auth | Login required |
|---|
Path parameters
communityIdstringrequiredCommunity ID or slug.
Query parameters
pagenumberPage number (1-based). Default 1.
perPagenumberItems 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
| Field | Type | Description |
|---|---|---|
announcements | Announcement[] | Array of announcements. |
pageInfo | object | Pagination 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 }}