Skip to content

Bucket CRUD

bengHak edited this page Jan 28, 2021 · 3 revisions

Create bucket

POST /bucket/create/
{
      bucketTitle (String),
      bucketContents (String),
      bucketDday (Date),
      bucketLocation (String)
}

Read bucket

GET /bucket/get/:bucketId

Update bucket

POST /bucket/update/:bucketId
{
      bucketId (Int),
      bucketTitle (String),
      bucketContents (String),
      bucketDday (Date),
      bucketLocation (String),
      bucketProgress (Tiny int)
}

Delete bucket

POST /bucket/delete/:bucketId
{
      bucketId (Int)
}
Clone this wiki locally