Announcements
Update an announcement
Update an existing announcement. Requires bearer token authentication.
patch/v5/announcements/{id}
Path parameters
idinteger nullable required
Announcement ID.
Example:1
Announcement ID.
Request body
Example request
{
"author": "ReVanced",
"title": "Welcome",
"content": "Some content",
"tags": [
"Important"
],
"created_at": "1970-01-01T00:00:00.000Z"
}Response
The updated announcement.
Example response
{
"id": 1,
"author": "ReVanced",
"title": "Welcome",
"content": "Some content",
"tags": [
"Important"
],
"created_at": "1970-01-01T00:00:00.000Z"
}