-
Notifications
You must be signed in to change notification settings - Fork 2
Announcement
Siyuan Zhang | 张豆 edited this page Oct 11, 2019
·
1 revision
GET /api/v1/announcements
[
{
"id": 116,
"authorId": 111,
"authorName": "Sylvia",
"content": "sixth announcement22",
"title": "sixth",
"modifiedDate": "2018-09-10 16:40:59"
}
]
GET /api/v1/annoucements/:id
{
"id": 116,
"authorId": 111,
"authorName": "Sylvia",
"content": "sixth announcement22",
"title": "sixth",
"modifiedDate": "2018-09-10 16:40:59"
}
ADMIN Required
POST /api/v1/announcements
Parameter | Default | Description |
---|---|---|
content |
null |
|
title |
null |
Unique |
{
"id": 121,
"authorId": 20,
"authorName": "kastnerorz",
"content": "test announce",
"title": "test",
"modifiedDate": "2018-10-03 12:02:06"
}
ADMIN Required
PUT /api/v1/announcements/:id
Parameter | Default | Description |
---|---|---|
content |
null |
|
title |
null |
Unique |
{
"id": 121,
"authorId": 20,
"authorName": "kastnerorz",
"content": "test announce",
"title": "test",
"modifiedDate": "2018-10-03 12:02:06"
}
ADMIN Required
DELETE /api/v1/announcements/:id
{
"id": 121,
"authorId": 20,
"authorName": "kastnerorz",
"content": "test announce",
"title": "test",
"modifiedDate": "2018-10-03 12:02:06"
}