Update community announcement

PUT/manage/communities/:communityId/announcements/:id

Update a community announcement. Admins only.

AuthLogin required

Path parameters

communityIdstringrequired

Community ID or slug.

idstringrequired

Announcement ID.

Request body

titlestring

Title; no length limit.

contentstring

Body (required); no length limit.

Request
curl https://api.4s.link/manage/communities/COMMUNITY_ID/announcements/ID \
-X PUT \
-H "Authorization: Bearer 4s_at_..." \
-H "Content-Type: application/json" \
-d '{
"title": "次回イベントのお知らせ(更新)"
}'
Example response
{
"id": "an1a2b3c-...",
"title": "次回イベントのお知らせ",
"content": "...",
"createdAt": "2026-08-18T00:00:00.000Z"
}