Announcements
Create an announcement
Create a new announcement. Requires bearer token authentication.
post/v5/announcements
Request body
Example request
{
"author": "ReVanced",
"title": "Welcome",
"content": "Some content",
"tags": [
"Important"
],
"created_at": "1970-01-01T00:00:00.000Z"
}Response
The created announcement.
Example response
{
"id": 1,
"author": "ReVanced",
"title": "Welcome",
"content": "Some content",
"tags": [
"Important"
],
"created_at": "1970-01-01T00:00:00.000Z"
}