-
Notifications
You must be signed in to change notification settings - Fork 11
Live Feed
Paul Dilyard edited this page Sep 29, 2015
·
1 revision
POST /messages
Auth -> admin, staff
{
"text": String // markdown
}
HTTP/1.1 201 Created
{
"_id": String,
"created": Date,
"text": String
}
GET /messages
HTTP/1.1 200 OK
{
"messages": [{
"_id": String,
"created": Date,
"text": String // markdown
}]
}
GET /messages/:id
HTTP/1.1 200 OK
{
"_id": String,
"created": Date,
"text": String // markdown
}
PATCH /messages/:id
Auth -> admin, staff
{
"text": String
}
HTTP/1.1 200 OK
{
"_id": String,
"created": Date,
"text": String
}
DELETE /messages/:id
Auth -> admin, staff
HTTP/1.1 200 OK
{
"_id": String
}