-
Notifications
You must be signed in to change notification settings - Fork 1
Bucket CRUD
bengHak edited this page Jan 28, 2021
·
3 revisions
POST /bucket/create/
{
bucketTitle (String),
bucketContents (String),
bucketDday (Date),
bucketLocation (String)
}
GET /bucket/get/:bucketId
POST /bucket/update/:bucketId
{
bucketId (Int),
bucketTitle (String),
bucketContents (String),
bucketDday (Date),
bucketLocation (String),
bucketProgress (Tiny int)
}
POST /bucket/delete/:bucketId
{
bucketId (Int)
}